2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
extends Panel
|
|
|
|
|
|
|
|
# member variables here, example:
|
|
|
|
# var a=2
|
|
|
|
# var b="textvar"
|
|
|
|
|
2015-12-09 07:38:23 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
func _ready():
|
|
|
|
# Initalization here
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
func _on_goto_scene_pressed():
|
|
|
|
get_node("/root/global").goto_scene("res://scene_b.scn")
|
|
|
|
pass # replace with function body
|