欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Unity 代码判断运行平台

程序员文章站 2022-04-03 22:21:35
...
void Awake() {
    #if UNITY_ANDROID
        Debug.Log("这里安卓设备");
    #endif
  
    #if UNITY_IPHONE
        Debug.Log("这里苹果设备");
    #endif
  
    #if UNITY_STANDALONE_WIN
        Debug.Log("电脑上运行o");
    #endif       
}
switch (Application.platform)
        {
        case RuntimePlatform.WindowsEditor:
            print("Windows");
            break;
  
        case RuntimePlatform.Android:
            print("Android");
            break;
  
        case RuntimePlatform.IPhonePlayer:
            print("Iphone");
            break;
        }