// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using UnityEngine; namespace UltimateXR.Avatar.Controllers { /// /// Enumerates possible actions over an component. Used by /// . /// public enum UxrEventVarAction { DoNothing, ToggleBool, SetBool, SetInt, SetFloat, Trigger } }