Arguments used with the ManipulateComponent.onManipulateEnd event.
ManipulateComponent.onManipulateEnd
//@input Component.ManipulateComponent manipulateComponent// Subscribe to the onManipulateEndEvent eventvar onManipulateEndEventEvent = script.manipulateComponent.onManipulateEndEvent.add(function(manipulateEndEventArgs){ print("On End!"); });// Unsubscribe from the onManipulateEndEvent eventscript.manipulateComponent.onManipulateEndEvent.remove(onManipulateEndEventEvent); Copy
//@input Component.ManipulateComponent manipulateComponent// Subscribe to the onManipulateEndEvent eventvar onManipulateEndEventEvent = script.manipulateComponent.onManipulateEndEvent.add(function(manipulateEndEventArgs){ print("On End!"); });// Unsubscribe from the onManipulateEndEvent eventscript.manipulateComponent.onManipulateEndEvent.remove(onManipulateEndEventEvent);
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
ManipulateComponent.onManipulateEnd
event.Example