Speeding up camera zoom on laptop works, but not on mobile

Hi, using this line
camera.wheelPrecision = 0.3;
I make zooming on laptop faster, great,
but on mobile phone zooming with fingers continues being super slow,
how can I speed up also zooming on mobile phones?
thank you

hey you need change pan and touch event not mouse wheel

1 Like

thank you very much, could you point me to code examples or what would I have to change to make that change affecting the zoom speed on mobiles? thank you :slight_smile:

camera.panningInertia = 0.65;
camera.panningSensibility = 10;
camera.wheelPrecision = 10;

1 Like

thank you very much, I will give it a try :slight_smile:

1 Like