Added pause capability to all levels, added music to Level 5, added a simple chasing AI to the glowing ghosts, and optimized the Main Menu scene

This commit is contained in:
VoidTwo
2021-11-28 20:33:22 -06:00
parent b6b8edce83
commit 4c55683bde
41 changed files with 396 additions and 151 deletions

View File

@@ -11,7 +11,7 @@ var hud: CanvasLayer = null
var velocity: Vector2 = Vector2.ZERO
func _physics_process(delta) -> void:
func _physics_process(delta: float) -> void:
var input_vector: Vector2 = Vector2.ZERO
input_vector.x = Input.get_action_strength('player_right') \