# ScreenOrientation

> Describes screen orientation.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEngine](/engine/6000.7/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public enum ScreenOrientation
```

## Remarks

Currently this is only relevant on mobile devices.

Additional Resources: [Screen.orientation](/engine/6000.7/script-reference/unityengine/screen/orientation.md).

## Fields

| Value                                                                                                     | Description                                                                 |
| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
| [AutoRotation](/engine/6000.7/script-reference/unityengine/screenorientation/autorotation.md)             | Autorotates the screen as necessary toward any of the enabled orientations. |
| [LandscapeLeft](/engine/6000.7/script-reference/unityengine/screenorientation/landscapeleft.md)           | Landscape orientation, counter-clockwise from the portrait orientation.     |
| [LandscapeRight](/engine/6000.7/script-reference/unityengine/screenorientation/landscaperight.md)         | Landscape orientation, clockwise from the portrait orientation.             |
| [Portrait](/engine/6000.7/script-reference/unityengine/screenorientation/portrait.md)                     | Portrait orientation.                                                       |
| [PortraitUpsideDown](/engine/6000.7/script-reference/unityengine/screenorientation/portraitupsidedown.md) | Portrait orientation, upside down.                                          |
