24 lines
500 B
GDScript3
24 lines
500 B
GDScript3
|
extends Control
|
||
|
|
||
|
func _ready():
|
||
|
$ButtonContainer/PlayButton.grab_focus()
|
||
|
|
||
|
func _on_PlayButton_pressed():
|
||
|
$MenuMusic.stop()
|
||
|
$BlackoutSound.play()
|
||
|
$ButtonContainer.visible = false
|
||
|
$BlackoutScreen.visible = true
|
||
|
var dialog = Dialogic.start("intro")
|
||
|
add_child(dialog)
|
||
|
|
||
|
func _on_Credits_pressed():
|
||
|
var dialog = Dialogic.start("credits")
|
||
|
add_child(dialog)
|
||
|
|
||
|
func _on_Controls_pressed():
|
||
|
var dialog = Dialogic.start("controls")
|
||
|
add_child(dialog)
|
||
|
|
||
|
func _on_QuitButton_pressed():
|
||
|
get_tree().quit()
|