Search Issue Tracker
Fixed in 2022.2.X
Votes
0
Found in
2021.2.0a16
Issue ID
1394769
Regression
Yes
Screen.orientation returns Landscape despite it being made obsolete
Screen.orientation returns Landscape when the orientation is set to Landscape Left. This is incorrect because ScreenOrientation.Landscape was made obsolete.
Steps to reproduce:
1. Open the attached project
2. Build for a mobile device of your choice
3. Attach a tool to verify console output - Screen.orientation reports Landscape.
Note: the attached project already has the Default Orientation set to Landscape Left. Make sure you have the same setting if you are not using the attached project.
Expected result: Screen.orientation is equal to ScreenOrientation.LandscapeLeft.
Actual result: Screen.orientation is equal to ScreenOrientation.Landscape
Reproducible with: 2021.2.0a16 and above
This is an undesirable result because we have made the ScreenOrientation.Landscape obsolete thus it's hard to use the resulting enum value from Screen.orientation in case it is needed.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “Assertion failed on expression” errors thrown when undoing Nodes creation with keyboard shortcut
- Crash on various stack traces when using Texture2D.CreateExternalTexture() while rendering
- Clicking on section text in Node Library > Context folder throws NullReferenceException errors
- Node Library window sections text in Context folder are not visible when Editor is set to Light Theme
- "Scene Depth Difference" Node has an input Port which is called Position WS, directly referring to the World Space Position, when only the View Space Position can reflect if the object's depth is below or above the Plane
Resolution Note (fix version 2022.2):
Fixed Screen.orientation returning deprecated "Landscape" value instead of "LandscapeLeft".