// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using System; namespace UltimateXR.Manipulation { /// /// Event arguments for and /// . /// public class UxrApplyConstraintsEventArgs : EventArgs { #region Public Types & Data /// /// Gets the grabbable object being constrained. /// public UxrGrabbableObject GrabbableObject { get; } #endregion #region Constructors & Finalizer /// /// Constructor. /// /// The object being constrained public UxrApplyConstraintsEventArgs(UxrGrabbableObject grabbableObject) { GrabbableObject = grabbableObject; } /// /// Default constructor is private. /// private UxrApplyConstraintsEventArgs() { } #endregion } }