Unity平台判断
程序员文章站
2022-04-03 22:20:53
...
#if UNITY_ANDROID
Debug.Log("安卓");
#endif
#if UNITY_IPHONE
Debug.Log("苹果设备");
#endif
#if UNITY_STANDALONE_WIN
Debug.Log("Windows");
#endif