unity 判断 是手机还是平板
时间:2014-02-22 07:31:21
收藏:0
阅读:844
///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
= true;
}
else
{
bIsTablet = false;
}
#elif UNITY_ANDROID
float
physicScreenSize = Mathf.Sqrt(Screen.width * Screen.width + Screen.height *
Screen.height) / Screen.dpi;
if(physicScreenSize >= 7f) //If the screen
size is >= 7 inches, it‘s a tablet
{
bIsTablet =
true;
}
else
{
bIsTablet = false;
}
#else
bIsTablet =
false;
#endif
// bIsTablet = false;
}
原文:http://www.cnblogs.com/qqqeeebbb/p/3560025.html
评论(0)