marathon mode skeleton

This commit is contained in:
Haze Weathers 2023-12-29 15:26:02 -05:00
parent 6bd0a81f11
commit 22a53ee1a0
9 changed files with 147 additions and 13 deletions

14
menus/marathon_start.gd Normal file
View file

@ -0,0 +1,14 @@
extends Control
export var first_level: PackedScene
func _ready() -> void:
Fade.fade_in()
func _input(event: InputEvent) -> void:
if Input.is_action_just_pressed("ui_accept"):
Game.marathon_score = 0
Game.change_map(first_level)