1. 程式人生 > >unity--設定預設螢幕方向並支援自動旋轉

unity--設定預設螢幕方向並支援自動旋轉

1.在Player Setting裡面設定預設的啟動螢幕正方向:

2.在控制類的Awake或者Start方法裡面,再設定想要的旋轉方向

1

2

3

4

5

6

7

8

9

void Awake()

{

    //設定螢幕自動旋轉, 並設定支援的方向

    Screen.orientation = ScreenOrientation.AutoRotation;

    Screen.autorotateToLandscapeLeft = true;

    Screen.autorotateToLandscapeRight = true;

    Screen.autorotateToPortrait = false;

    Screen.autorotateToPortraitUpsideDown = false;

}