Arguments used with the InteractionComponent.onSelectEnd event.
InteractionComponent.onSelectEnd
//@input Component.InteractionComponent interactionComponent// Subscribe to the selectEndEvent eventvar selectEndEvent = script.interactionComponent.onSelectEnd.add(function(selectEndEventArgs){ print("Select End!"); });// Unsubscribe from the selectEndEvent eventscript.interactionComponent.onSelectEnd.remove(selectEndEvent); Copy
//@input Component.InteractionComponent interactionComponent// Subscribe to the selectEndEvent eventvar selectEndEvent = script.interactionComponent.onSelectEnd.add(function(selectEndEventArgs){ print("Select End!"); });// Unsubscribe from the selectEndEvent eventscript.interactionComponent.onSelectEnd.remove(selectEndEvent);
Protected
Returns the name of this object's type.
Returns true if the object matches or derives from the passed in type.
Returns true if this object is the same as other. Useful for checking if two references point to the same thing.
other
Arguments used with the
InteractionComponent.onSelectEnd
event.Example