I want to reduce the increments of camera zooming when using the scroll wheel. The issue is that when I turn my character small and reduce the max camera distance, the zoom increments are so large that I can only go max zoom distance or minimum zoom distance.
I feel like I need to edit one of the playerscripts, but I don’t really know where to start.
You would probably have to make a custom camera system
- Enter test and copy
PlayerModule
fromStarterPlayer > StarterPlayerScripts
. - Exit test and paste it into the same folder.
- Navigate to
PlayerModule > CameraModule > BaseCamera
. - On line 373, multiply
zoomDelta
by some constant between 0 and 1.
local zoomDelta: number = CameraInput.getZoomDelta() * 0.5 -- Cuts zoom speed in half
2 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.