Gesture Pad
Last updated
Last updated
A control type that provides gesture interaction such as pan, pinch, or twist, typically involves dragging of one or more fingers across a touchable area.
A pan gesture involves dragging one or more fingers across the screen without lifting them. It is typically used to move or orbit the camera view.
Input Simulate
: The Vector2 control path of the input control to be simulate.
Fingers
: The number of fingers required to activate a pan.
Threshold
: The minimum movement required to activate a pan.
Sensitivity
: The multiplier that adjusts the output delta of pan.
The Threshold
are essential for preventing unintended gesture activation caused by minor movements or accidental touches, ensuring more accurate and intentional interactions.
A pinch gesture involves two or more fingers moving closer together (pinch in) or farther apart (pinch out) on the screen. It is typically used to zoom in or out the camera view.
Input Simulate
: The Axis control path of the input control to be simulate.
Fingers
: The number of fingers required to activate a pinch.
Threshold
: The minimum movement required to activate a pinch.
Sensitivity
: The multiplier that adjusts the output delta of pinch.
A twist gesture involves two or more fingers rotating relative to each other, usually in a clockwise or counterclockwise motion.
Input Simulate
: The Axis control path of the input control to be simulate.
Fingers
: The number of fingers required to activate a twist.
Threshold
: The minimum movement required to activate a twist.
Sensitivity
: The multiplier that adjusts the output delta of twist.