mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-16 13:30:07 +01:00
16 lines
236 B
GDScript
16 lines
236 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
|