godot-steering-ai-framework/project/demos/DemoPlayer.gd
Nathan Lovato 8e04378b1c Refactor and improve the demo picker
Improve the UI styles
Add a button to go back to the demo picker
Simplify the code that handles text
2020-02-08 09:36:06 -06:00

17 lines
254 B
GDScript

extends Node2D
func load_demo(scene_path: String) -> void:
if not scene_path:
return
var demo = load(scene_path)
if demo:
add_child(demo.instance())
func unload() -> void:
for node in get_children():
remove_child(node)
node.queue_free()