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

unity 平台判断

程序员文章站 2022-04-03 22:18:12
...

使用预编译:

 #if UNITY_ANDROID
        Debug.Log("安卓设备");
    #endif
  
    #if UNITY_IPHONE
        Debug.Log("苹果设备");
    #endif
  
    #if UNITY_STANDALONE_WIN
        Debug.Log("windows电脑");
    #endif  

运行时判断:

switch (Application.platform)
        {
        case RuntimePlatform.WindowsEditor:
            print("Windows");
            break;
  
        case RuntimePlatform.Android:
            print("Android");
            break;
  
        case RuntimePlatform.IPhonePlayer:
            print("Iphone");
            break;
        }
相关标签: unity 平台判断