2015-05-17 19:33:35 +00:00
|
|
|
|
|
|
|
extends Panel
|
|
|
|
|
2015-11-21 12:31:25 +00:00
|
|
|
# Member variables here, example:
|
2015-05-17 19:33:35 +00:00
|
|
|
# var a=2
|
|
|
|
# var b="textvar"
|
|
|
|
|
2015-12-09 07:38:23 +00:00
|
|
|
|
2015-05-17 19:33:35 +00:00
|
|
|
func _ready():
|
|
|
|
# Initalization here
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
func _on_goto_scene_pressed():
|
|
|
|
get_tree().change_scene("res://scene_a.scn")
|
2015-11-21 12:31:25 +00:00
|
|
|
pass # Replace with function body
|