// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Utilities { /// /// The ExperienceScale identifies the environment for which the experience is designed. /// [System.Serializable] public enum ExperienceScale { /// /// An experience which utilizes only the headset orientation and is gravity aligned. The coordinate system origin is at head level. /// OrientationOnly = 0, /// /// An experience designed for seated use. The coordinate system origin is at head level. /// Seated, /// /// An experience designed for stationary standing use. The coordinate system origin is at floor level. /// Standing, /// /// An experience designed to support movement throughout a room. The coordinate system origin is at floor level. /// Room, /// /// An experience designed to utilize and move through the physical world. The coordinate system origin is at head level. /// World } }