带版本的操作系统名称(只读)。
返回有关设备操作系统详细信息,包括版本。如需进行简单的平台检测,像 Application.platform 或 deviceType 这样的属性可能更合适。
注意:在 Microsoft Store 应用中,很难识别您运行的是 Windows 的 32 位版本还是 64 位版本。但是,您可以查询 CPU 架构来查找此信息。如果 CPU 是 64 位,SystemInfo.operatingSystem 返回 Windows <version> 64 bit,如果 CPU 是 32 位,它返回 Windows <version>。
using UnityEngine;
public class ExampleClass: MonoBehaviour { void Start() { // Prints "Windows 11 (10.0.22621) 64bit" on 64 bit Windows 11 // Prints "Mac OS X 13.4" on Mac OS Ventura // Prints "iPhone OS" with iOS 15.3.1 // Prints "iPad OS" on iPad with iOS 16 // Prints "Android OS 13 / API-33 (TQ2A.230305.008.C1/9619669)" Debug.Log(SystemInfo.operatingSystem); } }