// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- namespace UltimateXR.UI.UnityInputModule.Controls { public partial class UxrToggleControlInput { #region Public Types & Data /// /// Enumerates the different initial states of the toggle control. /// public enum InitState { /// /// Initially toggled off. /// ToggledOff = 0, /// /// Initially toggled on. /// ToggledOn = 1, /// /// Don't change the toggle. /// DontChange = 2 } #endregion } }