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, 2 insertions, 1 deletions
diff --git a/autoloads/Globals.gd b/autoloads/Globals.gd index e7d17ac..0b745c9 100644 --- a/autoloads/Globals.gd +++ b/autoloads/Globals.gd @@ -3,5 +3,6 @@ extends Node var player: Player = null var levelmanager: LevelManager = null + func _init() -> void: - RenderingServer.set_default_clear_color(Color.BLACK) + RenderingServer.set_default_clear_color(Color.BLACK) |