Version: 2021.2

Screen.orientation

切换到手册
public static ScreenOrientation orientation ;

描述

指定屏幕的逻辑方向。

The default value is taken from the Default Orientation property in Player Settings. Currently screen orientation is only relevant on mobile platforms. For example, if a mobile device has a resoltion of 480x320, the horizontal orientation is treated as 480x320 resolution and vertical orientation is 320x480.

Note: The logical orientation affects not only screen orientation, but also touch coordinates. You should expect drastic changes in the touch positions after changing logical orientation, since touch positions are rotated clockwise or counter-clockwise to match screen coordinates.

using UnityEngine;

public class Example : MonoBehaviour { // Start in landscape mode void Start() { Screen.orientation = ScreenOrientation.LandscapeLeft; } }

If the value is set to ScreenOrientation.AutoRotation then the screen selects from any of the options (enabled by autorotateToPortrait, etc) automatically as the device orientation changes.

另请参阅:ScreenOrientation