better light

This commit is contained in:
2025-04-26 19:24:52 +02:00
parent b62dcffcb1
commit 6ca5d1294f
4 changed files with 58 additions and 17 deletions

View File

@@ -22,8 +22,8 @@ public class Renderer {
private VertexArray boardVao;
private final PieceModel models;
private static final Vector3f BLACK = new Vector3f(0.1f, 0.1f, 0.1f);
private static final Vector3f WHITE = new Vector3f(0.7f, 0.7f, 0.7f);
private static final Vector3f BLACK = new Vector3f(0.3f, 0.3f, 0.3f);
private static final Vector3f WHITE = new Vector3f(1.0f, 1.0f, 1.0f);
public Renderer() {
this.boardShader = new BoardShader();