feat: Implement Stop N Go game mode with phase management, mission objectives, and visual HUD elements.

This commit is contained in:
Yogi Wiguna
2026-02-26 10:40:55 +08:00
parent 36485c7f25
commit 3cd67c02ab
6 changed files with 127 additions and 44 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ enum Phase {GO, STOP}
const GO_DURATION: float = 8.0
const STOP_DURATION: float = 4.0
const REQUIRED_GOALS: int = 8
const REQUIRED_GOALS: int = 1
var current_phase: Phase = Phase.GO
var phase_timer: float = GO_DURATION