LanguageEnglish
  • C#

Input.deviceOrientation

public static DeviceOrientation deviceOrientation;

Description

Device physical orientation as reported by OS. (Read Only)

Note: This API is part of the legacy Input class, and not recommended for new projects. The documentation is provided here to support legacy projects that use the old Input Manager and Input class. For new projects you should use the newer and Input System Package. (read more).

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { AudioSource audioSource;

void Start() { audioSource = GetComponent<AudioSource>(); }

void Update() { if (Input.deviceOrientation == DeviceOrientation.FaceDown) audioSource.Play(); } }

Did you find this page useful? Please give it a rating: