add renovate.json

This commit is contained in:
2025-11-14 14:51:39 +01:00
parent 9a59d15859
commit e47768863f
2 changed files with 8 additions and 5 deletions

View File

@@ -71,12 +71,12 @@ public class GameScreen implements Screen {
// shadow-casting directional light // shadow-casting directional light
shadowLight = new DirectionalShadowLight( shadowLight = new DirectionalShadowLight(
1024, 1024, // shadow map resolution 1024, 1024, // shadow map resolution
60f, 60f, // viewport size (render distance) 60f, 60f, // viewport size
1f, 50f // near/far for the light camera 1f, 50f // near/far for the light camera
); );
shadowLight.set( shadowLight.set(
1.0f, 0.85f, 0.9f, // casting light color 1.0f, 0.85f, 0.9f, // casting light color
-0.7f, -1.0f, -0.3f // direction -0.7f, -1.0f, -0.3f // direction
); );
environment.add(shadowLight); environment.add(shadowLight);
@@ -93,7 +93,7 @@ public class GameScreen implements Screen {
hud = new DebugHud(); hud = new DebugHud();
} }
// --- Screen methods --- // --- screen methods
private void initRetroBuffer() { private void initRetroBuffer() {
// RGB + depth // RGB + depth
frameBuffer = new FrameBuffer( frameBuffer = new FrameBuffer(

3
renovate.json Normal file
View File

@@ -0,0 +1,3 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}