yodaaaaaa

This commit is contained in:
2025-04-24 11:12:53 +02:00
parent ce0424ff8b
commit 098b605799
7 changed files with 152 additions and 22 deletions

View File

@@ -8,7 +8,7 @@ public class Camera {
// should be changed to match screen
public static final float aspect = 1.0f;
public static final float zNear = 0.01f;
public static final float zFar = 100.0f;
public static final float zFar = 1000.0f;
private Vector3f pos;
@@ -16,7 +16,7 @@ public class Camera {
private float pitch = 0.0f;
public Camera() {
this.pos = new Vector3f(0, 2.0f, 0);
this.pos = new Vector3f(1, 1.0f, 0);
setRotation(0.0f, -3.14150f / 2.0f);
}
@@ -123,6 +123,6 @@ public class Camera {
return new Matrix4f()
.perspective((float) (Math.toRadians(fov)), aspect, zNear, zFar)
.lookAt(pos, forward, new Vector3f(0.0f, 1.0f, 0.0f));
.lookAt(pos, new Vector3f(0.0f, 0, 0), new Vector3f(0.0f, 1.0f, 0.0f));
}
}