两种方式
--------------- C预处理器编译判断 ---------------
#if UNITY_IOS // ... iOS项目才会编译 #elif UNITY_ANDROID // ... apk 或 iOS项目才会编译 #elif UNITY_EDITOR // ... UNITY调试时候才编译 #endif
--------------- 代码运行时判断 ---------------
if(Application.platform == RuntimePlatform.Android) { //只有在安卓生效 }
:)
原文地址:https://www.cnblogs.com/sweetXiaoma/p/9667978.html
时间: 2024-10-10 12:54:00