black_lives_kinda_matter
New member
- Joined
- Jan 1, 2023
- Messages
- 7
- Reaction score
- 0
- Points
- 1
Hi, im starting doing a mc 1.8.9 base and I want to add a smooth zoom like lunar zoom, could someone tell me how do it? thanks
is there an video with this?
if (newFov != fov) {
if (newFov >= mc.gameSettings.fovSetting) {
resetOpt();
} else {
inZoom = true;
this.fov = newFov;
if (stab) {
float newSens = origSens * (newFov / mc.gameSettings.fovSetting);
mc.gameSettings.mouseSensitivity = newSens;
sens = newSens;
}
}