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

@@ -25,11 +25,6 @@ public class Window {
public Window() {
this.renderer = new Renderer();
this.cam = new Camera();
try {
ModelLoader.loadModel("3d/bishop.glb");
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
@@ -98,7 +93,7 @@ public class Window {
}
private void render() {
cam.rotate(0.01f, 0.01f);
cam.move(0.001f, 0.001f);
renderer.Render(cam);
}