summaryrefslogtreecommitdiff
path: root/demos/misc/scene_changer/scene_b.gd
blob: 9ed13cf26bafea602bb1f0b909c6476c3060eb39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

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_a.scn")
	pass # Replace with function body