Zoom sensitivity

This is the Example I’m working with and I’m wondering how the sensitivity of the zoom is being controlled.
I have some modified examples where it zooms really fast, and one where it zooms really slow the only thing different is the model being loaded

Hello @bluopp!

I’m not sure if this is what you’re looking for, but adding the line below will adjust camera zoom speed:

camera.wheelPrecision = 0.5; //Mouse wheel speed

It’s placed under the var camera line.

1 Like

Here’s your example with the line added:
https://www.babylonjs-playground.com/#L76FB1#124

Increasing the number value makes the camera zoom slower, and lowering it speeds up the zoom.

Awesome! Thanks this definitely works