Allow more zoom in camera

This commit is contained in:
utkabobr
2025-04-02 01:40:52 +03:00
parent 6ede5931e8
commit 2c1d45153b
@@ -34,7 +34,7 @@ public class Camera {
}
public void zoom(float zoom) {
this.zoom = MathUtils.clamp(this.zoom + zoom / 25f, 1f, 5f);
this.zoom = MathUtils.clamp(this.zoom + zoom / 25f, 1f, 10f);
}
public void setZoom(float zoom) {