27 lines
586 B
GDScript3
27 lines
586 B
GDScript3
|
extends CenterContainer
|
||
|
|
||
|
|
||
|
func _ready() -> void:
|
||
|
if OS.get_name() == "HTML5":
|
||
|
find_node("QuitButton").hide()
|
||
|
|
||
|
|
||
|
func _on_DailyButton_pressed() -> void:
|
||
|
Global.daily_mode = true
|
||
|
var error := get_tree().change_scene("res://src/Main.tscn")
|
||
|
assert(not error)
|
||
|
|
||
|
|
||
|
func _on_RandomButton_pressed() -> void:
|
||
|
Global.daily_mode = false
|
||
|
var error := get_tree().change_scene("res://src/Main.tscn")
|
||
|
assert(not error)
|
||
|
|
||
|
|
||
|
func _on_CreditsButton_pressed() -> void:
|
||
|
pass # Replace with function body.
|
||
|
|
||
|
|
||
|
func _on_QuitButton_pressed() -> void:
|
||
|
get_tree().notification(NOTIFICATION_WM_QUIT_REQUEST)
|