【分享】Unity判斷是PC/手機/平板/iOS/Android 平台
這個可以判斷是iphone/ipad 以及 android手機或7吋以上 由於如果開發中會針對不同平台做不同處理 就可以用官方文件提供的方法來選擇不同的code 像是開發的時候常常會需要在PC(IDE上)跟目標平台不斷測試與切換就會用到 例如在PC上是mouseClick,在移動裝置上是touch 先直接上Code: ///Check the current device is tablet or not private void checkTheCurrentDevice() { #if UNITY_IPHONE string deviceModel = SystemInfo.deviceModel.ToLower().Trim(); if(deviceModel.StartsWith("ipad")) { bIsTablet...