2022-04-16 09:02:53 +00:00
|
|
|
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_quit_pressed():
|
2022-04-17 09:40:01 +00:00
|
|
|
var parentname = get_parent().name
|
|
|
|
print(parentname)
|
|
|
|
get_parent().get_node("developper_panel").queue_free()
|