a game about throwing hammers made for the github game off
Diffstat (limited to 'autoloads/Globals.gd')
| -rw-r--r-- | autoloads/Globals.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/autoloads/Globals.gd b/autoloads/Globals.gd index a395865..e7d17ac 100644 --- a/autoloads/Globals.gd +++ b/autoloads/Globals.gd @@ -2,3 +2,6 @@ extends Node var player: Player = null var levelmanager: LevelManager = null + +func _init() -> void: + RenderingServer.set_default_clear_color(Color.BLACK) |