This repository has been archived on 2023-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
Boups/Scenes/Screen_Menu.gd
2023-02-25 14:17:42 +01:00

25 lines
476 B
GDScript

extends Control
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass
func _on_PlayButton_pressed():
print("ici")
get_tree().change_scene("res://Scenes/Node2D.tscn")
func _on_Help_Button_pressed():
print("help")
func _on_Quit_Button_pressed():
get_tree().quit()
# Replace with function body.