marathon mode skeleton
This commit is contained in:
parent
6bd0a81f11
commit
22a53ee1a0
9 changed files with 147 additions and 13 deletions
14
menus/marathon_results.gd
Normal file
14
menus/marathon_results.gd
Normal file
|
@ -0,0 +1,14 @@
|
|||
extends Control
|
||||
|
||||
|
||||
onready var score: Label = $"%Score"
|
||||
|
||||
|
||||
func _ready() -> void:
|
||||
Fade.fade_in()
|
||||
score.text = score.text % Game.marathon_score
|
||||
|
||||
|
||||
func _input(event: InputEvent) -> void:
|
||||
if Input.is_action_just_pressed("ui_accept"):
|
||||
Game.change_map(load("res://menus/marathon_start.tscn"))
|
Loading…
Add table
Add a link
Reference in a new issue