必要时朝着任何启用的方向自动旋转屏幕。
如果将此选项分配给 Screen.orientation 属性,屏幕将自动旋转,以便屏幕图像的底部在下方。通过 Screen.autorotateToLandscapeLeft、Screen.autorotateToLandscapeRight、Screen.autorotateToPortrait 和 Screen::autorotateToPortraitUpsideDown 属性设置可使用的方向。例如,如果 Screen.autorotateToPortrait 和 Screen::autorotateToPortraitUpsideDown 均为 true,但其他属性为 false,则自动旋转不会选择任何一个横向选项,即使在握住设备时屏幕长边指向下方时也是如此。
using UnityEngine;
public class Example : MonoBehaviour { void Start() { Screen.autorotateToPortrait = true;
Screen.autorotateToPortraitUpsideDown = true;
Screen.orientation = ScreenOrientation.AutoRotation; } }
另请参阅:Screen.orientation。