Added Infinite Mode; Improved Timer
This commit is contained in:
parent
1245ebc9e8
commit
ed9f671256
9 changed files with 109 additions and 44 deletions
|
|
@ -11,5 +11,10 @@ func _process(delta: float) -> void:
|
|||
pass
|
||||
|
||||
|
||||
func _on_start_button_pressed() -> void:
|
||||
func _on_infinite_mode_button_pressed() -> void:
|
||||
GLOBAL.currentMode = GLOBAL.MODES.INFINITE
|
||||
get_parent().get_parent().loadGrid()
|
||||
|
||||
func _on_time_mode_button_pressed() -> void:
|
||||
GLOBAL.currentMode = GLOBAL.MODES.TIME
|
||||
get_parent().get_parent().loadGrid()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue