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