返回介绍

SystemInfo.operatingSystem 操作系统

发布于 2019-12-18 15:38:35 字数 1305 浏览 1003 评论 0 收藏 0

JavaScript => public static var operatingSystem: string;
C# => public static string operatingSystem;

Description 描述

Operating system name with version (Read Only).

操作系统的名称(只读)。

Returns detailed information about the operating system of the device, including the version. For a simple platform detection, properties like Application.platform or deviceType might be more appropriate.

返回关于该设备的操作系统的详细信息,包括版本信息。对于简单的平台检测,像Application.platform或者数据库可能更合适。

JavaScript:

#pragma strict
function Start() {
	// Prints "Android OS API-22" on Android 5.1
	Debug.Log(SystemInfo.operatingSystem);
}

C#:

using UnityEngine;
 
public class ExampleClass : MonoBehaviour {
    void Start() {
        // Prints "Windows 7 (6.1.7601) 64bit" on 64 bit Windows 7
        // Prints "Mac OS X 10.10.4" on OS X Yosemite
        // Prints "iPhone OS 8.4" on iOS 8.4
        // Prints "Android OS API-22" on Android 5.1
        Debug.Log (SystemInfo.operatingSystem);
    }
}

systeminfo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文