Skip to content

Instantly share code, notes, and snippets.

@Enigo
Created February 6, 2021 20:24
Show Gist options
  • Save Enigo/7227307ecf644fa4a7cb047fb521f46e to your computer and use it in GitHub Desktop.
Save Enigo/7227307ecf644fa4a7cb047fb521f46e to your computer and use it in GitHub Desktop.
public class ChangeOrientationButton : MonoBehaviour
{
public void ChangeOrientation()
{
if (Screen.orientation == ScreenOrientation.Portrait)
{
Screen.orientation = ScreenOrientation.Landscape;
}
else
{
Screen.orientation = ScreenOrientation.Portrait;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment