返回游戏运行的平台(只读)。
如果您需要执行一些平台相关的操作,请使用此属性。
using UnityEngine;
public class ExampleClass : MonoBehaviour { void Start() { if (Application.platform == RuntimePlatform.WindowsPlayer) Debug.Log("Do something special here"); } }
其他资源: RuntimePlatform 枚举,SystemInfo 类。