You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
17 lines
237 B
GDScript
17 lines
237 B
GDScript
|
|
extends Panel
|
|
|
|
# Member variables here, example:
|
|
# var a=2
|
|
# var b="textvar"
|
|
|
|
|
|
func _ready():
|
|
# Initalization here
|
|
pass
|
|
|
|
|
|
func _on_goto_scene_pressed():
|
|
get_tree().change_scene("res://scene_b.scn")
|
|
pass # Replace with function body
|