One finger Panning on touch devices using TrackballControls

Hi,

Is there any way to change touch behaviour in TrackballControls like OrbitControls. I see in OrbitControls we can change like below

controls = new OrbitControls( camera, renderer.domElement );
controls.touches.ONE = THREE.TOUCH.PAN;
controls.touches.TWO = THREE.TOUCH.DOLLY_ROTATE;

Do we have any way for TrackballControls?

Thanks in advance

Unfortunately, no. As far as I see, you can only configure mouse input (mouseButtons).

Consider to make a feature request at GitHub for this.

Thanks for your reply.