Thx for reply.
And how to code that?
On the one hand I have for the gesture:
Multitouch.inputMode = MultitouchInputMode.GESTURE;
addEventListener(TransformGestureEvent.GESTURE_ROTATE, onRotate);
function onRotate(){
...
}
On the other hand, in Flare3D code examples I found:
if ( Input3D.keyDown( Input3D.LEFT ) ) car.rotateY( -3 );
if ( Input3D.keyDown( Input3D.RIGHT ) ) car.rotateY( 3 );
Whats the solution for the code? What to use instead of Input3D?