آموزش تنظیم افقی یا عمودی شدن صفحه ی بازی در یونیتی 5 :
سه شنبه, ۸ دی ۱۳۹۴، ۱۰:۵۲ ق.ظ
منبع:gameover.blog.ir
برای اینکار باید Screen.orientation رو با مقادیر کلاس ScreenOrientation تنظیم کنیم.
مقادیر:
Variables Portrait Portrait orientation. PortraitUpsideDown Portrait orientation, upside down. LandscapeLeft Landscape orientation, counter-clockwise from the portrait orientation. LandscapeRight Landscape orientation, clockwise from the portrait orientation. AutoRotation Auto-rotates the screen as necessary toward any of the enabled orientations.
مثال :
// Start in landscape mode function Start () { Screen.orientation = ScreenOrientation.LandscapeLeft; }
منبع :help یونیتی
میشه یه توضیح بدید از اون مقادیر چجوری باید استفاده کرد ؟
اون خط کد مثال مثل اینه که از داخل پنجره player setting حالت عمودی انتخاب کنیم .
در کل برای طراحی بازی در حالت ایستاده و ui در یونیتی5 باید چیکار کرد ؟
دم شما گرم .