From 3103e4811d7dda0a1533cdce8da8328c7add8175 Mon Sep 17 00:00:00 2001 From: "C. J. Howard" Date: Mon, 14 Sep 2020 03:11:59 -0700 Subject: [PATCH] Increase ambient light --- src/game/bootloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/bootloader.cpp b/src/game/bootloader.cpp index 21eaf67..0f277a0 100644 --- a/src/game/bootloader.cpp +++ b/src/game/bootloader.cpp @@ -619,7 +619,7 @@ void setup_scenes(game_context* ctx) // Setup lights ctx->sun_indirect = new ambient_light(); - ctx->sun_indirect->set_intensity(0.25f); + ctx->sun_indirect->set_intensity(0.5f); ctx->sun_indirect->update_tweens(); ctx->sun_direct = new directional_light();