You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
21 lines
284 B
GDScript
21 lines
284 B
GDScript
|
|
extends Panel
|
|
|
|
# member variables here, example:
|
|
# var a=2
|
|
# var b="textvar"
|
|
|
|
func _ready():
|
|
# Initialization here
|
|
pass
|
|
|
|
|
|
|
|
|
|
func _on_back_pressed():
|
|
var s = load("res://main.scn")
|
|
var si = s.instance()
|
|
get_parent().add_child(si)
|
|
queue_free()
|
|
pass # replace with function body
|