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