// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using System; namespace UltimateXR.Manipulation { /// /// Flags enumerating the different modes that can be used to preview the grab poses in the editor while an /// is selected. /// [Flags] public enum UxrPreviewGrabPoses { /// /// Don't preview the grab poses. /// DontShow = 0, /// /// Preview the left grab poses. /// ShowLeftHand = 1, /// /// Preview the right grab poses. /// ShowRightHand = 1 << 1, /// /// Preview left and right grab poses. /// ShowBothHands = ShowLeftHand | ShowRightHand } }