Dreams Come True Studio

godot 화면 전환 방법 본문

Game publisher/GoDot Game Engine

godot 화면 전환 방법

Dream Come True 2017. 11. 18. 22:04
반응형













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






반응형
Comments