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