How can I make the camera zoom out smoothly.
For example, I need to make the camera move away from 1 to 0.5 with a step of 0.1, and not immediately set the value to 0.5
Change Camera Zoom to “lerp(CameraZoom(), 0.5, 0.1)”
1 Like
Thanks, this method works.