版本: Unity 6 (6000.0)
语言英语
  • C#

Application.platform

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们会阅读用户提出的每项更改建议,并在适当情况下进行更新。

关闭

提交失败

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

关闭

取消

public static RuntimePlatform platform;

描述

返回游戏运行的平台(只读)。

如果您需要执行一些平台相关的操作,请使用此属性。

using UnityEngine;

public class ExampleClass : MonoBehaviour { void Start() { if (Application.platform == RuntimePlatform.WindowsPlayer) Debug.Log("Do something special here"); } }

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