17 lines
351 B
GDScript
17 lines
351 B
GDScript
# Panel to include all developpment tools for testing / debugging etc.
|
|
|
|
extends Control
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
pass
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta):
|
|
pass
|
|
|
|
# Signals calls
|
|
# Quit button
|
|
func _on_quit_pressed():
|
|
queue_free()
|