mirror of
https://github.com/Dark98/SliceBeam.git
synced 2026-07-03 00:38:53 +00:00
Allow more zoom in camera
This commit is contained in:
@@ -34,7 +34,7 @@ public class Camera {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void zoom(float zoom) {
|
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) {
|
public void setZoom(float zoom) {
|
||||||
|
|||||||
Reference in New Issue
Block a user