版本:Unity 6 (6000.0)
语言中文(简体)
  • C#

SystemInfo.operatingSystemFamily

建议更改

成功

谢谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有投稿,但我们确实会阅读用户建议的每处更改,并在适用情况下进行更新。

关闭

提交失败

由于某些原因,无法提交您的建议更改。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

public static OperatingSystemFamily operatingSystemFamily;

说明

返回游戏正在运行的操作系统系列(只读)。

UI 代码使用此 API 来区分具有不同 UI 规范的桌面操作系统系列。对于所有非桌面平台,它当前将返回 OperatingSystemFamily.Other

using UnityEngine;

public class ExampleClass : MonoBehaviour { void Start() { if (SystemInfo.operatingSystemFamily == OperatingSystemFamily.MacOSX) Debug.Log("Do something special here"); } }

其他资源:OperatingSystemFamily 枚举,SystemInfo 类。