Enum values specifying each type of manipulation. See ManipulateComponent.
Used By: ManipulateComponent#enableManipulateType, ManipulateComponent#isManipulateTypeEnabled
// Disables the scale functionality on a manipulate component when a user taps//@input Component.ManipulateComponent manipfunction onTap(eventData){ script.manip.enableManipulateType(ManipulateType.Scale, false);}var tapEvent = script.createEvent("TapEvent");tapEvent.bind(onTap); Copy
// Disables the scale functionality on a manipulate component when a user taps//@input Component.ManipulateComponent manipfunction onTap(eventData){ script.manip.enableManipulateType(ManipulateType.Scale, false);}var tapEvent = script.createEvent("TapEvent");tapEvent.bind(onTap);
The object can be moved by touching and dragging.
The object can be scaled by pinching with two fingers.
The object can be rotated by swiveling with two fingers.
Enum values specifying each type of manipulation. See ManipulateComponent.
See
Used By: ManipulateComponent#enableManipulateType, ManipulateComponent#isManipulateTypeEnabled
Example