You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
18 lines
238 B
GDScript
18 lines
238 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
|