2013年3月4日月曜日

[Unity3d]iOS機種判定

Unity's ready for the iPad4 and new iPad Mini!
ここのサイトを参考にしました。
@"i386"      on the simulator
@"iPod1,1"   on iPod Touch
@"iPod2,1"   on iPod Touch Second Generation
@"iPod3,1"   on iPod Touch Third Generation
@"iPod4,1"   on iPod Touch Fourth Generation
@"iPhone1,1" on iPhone
@"iPhone1,2" on iPhone 3G
@"iPhone2,1" on iPhone 3GS
@"iPad1,1"   on iPad
@"iPad2,1"   on iPad 2
@"iPad3,1"   on iPad 3 (aka new iPad)
@"iPhone3,1" on iPhone 4
@"iPhone4,1" on iPhone 4S
@"iPhone5,1" on iPhone 5
@"iPhone5,2" on iPhone 5

 unity上では@が付いている文字列を使います。
if( iOSInfo.GetDeviceMode()== "iPhone5,1" || "iPhone5,2" ) {
   Debug.Log("It's iPhone5!");
}

0 件のコメント:

コメントを投稿