using UnityEngine.Scripting.APIUpdating; namespace UnityEngine.XR.Interaction.Toolkit.Interactables { /// /// The simplest Interactable object which provides events for interaction states like hover and select. /// /// /// `XRSimpleInteractable` provides a concrete implementation of the . /// A GameObject with this component responds to / /// and / /// events, but provides no default interaction behavior. /// /// For more information refer to: /// * [XR Simple Interactable component](xref:xri-simple-interactable) /// * [Create a grab interactable](xref:xri-general-setup#create-grab-interactable) /// * [UI interaction setup](xref:xri-ui-setup) /// * [Interaction States](xref:xri-architecture#states) /// [MovedFrom("UnityEngine.XR.Interaction.Toolkit")] [SelectionBase] [DisallowMultipleComponent] [AddComponentMenu("XR/XR Simple Interactable", 11)] [HelpURL(XRHelpURLConstants.k_XRSimpleInteractable)] public class XRSimpleInteractable : XRBaseInteractable { } }