level bounds now don't error out on save/quit

This commit is contained in:
Derek
2025-04-04 08:21:46 -05:00
parent 32b9efbd92
commit 6cd06193b5
6 changed files with 22 additions and 14 deletions

View File

@@ -18,7 +18,7 @@ func change_sun():
sun.rotation.x = sun_details["angle"]
sun.rotation.y = north_offset
sun.light_energy = sun_details["energy"]
moon.light_energy = (2 - sun_details["energy"]) * .5
moon.light_energy = (2 - sun_details["energy"]) * .25
func sun_angle_from_time():
var time_dict = Time.get_time_dict_from_system()