// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace Microsoft.MixedReality.Toolkit.UI { /// /// Describes in which axis to orient the slider /// [Serializable] public enum SliderAxis { XAxis = 0, YAxis, ZAxis } }