Unity 3D - 判断当前平台 :
官方文档 - 链接
判断编译阶段选择的平台 :
只要在发布设置里切换到了该平台,就会起作用 .
#if UNITY_IOS || UNITY_ANDROID
#endif
#if UNITY_ANDROID && UNITY_EDITOR
#endif
运行时判断平台 :
官方各平台类型 - 链接
if(Application.
platform == RuntimePlatform.WindowsWebPlayer)
{
}
转载请注明原文地址: https://www.6miu.com/read-1626.html