Arguments used with the InteractionComponent.onSelectStart event.
InteractionComponent.onSelectStart
//@input Component.InteractionComponent interactionComponent// Subscribe to the selectStartEvent eventvar selectStartEvent = script.interactionComponent.onSelectStart.add(function(selectStartEventArgs){ print("Select Start!"); });// Unsubscribe from the selectStartEvent eventscript.interactionComponent.onSelectStart.remove(selectStartEvent); Copy
//@input Component.InteractionComponent interactionComponent// Subscribe to the selectStartEvent eventvar selectStartEvent = script.interactionComponent.onSelectStart.add(function(selectStartEventArgs){ print("Select Start!"); });// Unsubscribe from the selectStartEvent eventscript.interactionComponent.onSelectStart.remove(selectStartEvent);
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.onSelectStart
event.Example