IPinchInfo
Pinch event information includes scale and angle.
| Type | Name | Interface Description |
|---|---|---|
| Variables | angle: number | • Function: Pinch angle. |
| Variables | scale: number | • Function: Pinch scale. |
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use IPinchInfo here
}
onUpdate(deltaTime: number) {
}
}