added more stuff and refactor

This commit is contained in:
2026-04-11 01:48:53 -04:00
parent 38a5aa5a47
commit 36e3f83df1
13 changed files with 360 additions and 319 deletions

View File

@@ -0,0 +1,16 @@
import org.joml.Vector3f;
public class DirectionalLight {
public Vector3f direction;
public Vector3f color;
public float intensity;
public DirectionalLight (
Vector3f direction,
Vector3f color,
float intensity) {
this.direction = direction;
this.color = color;
this.intensity = intensity;
}
}