mirror of
https://github.com/RPG-Research/bcirpg.git
synced 2024-04-16 14:23:01 +00:00
10 lines
172 B
GDScript
10 lines
172 B
GDScript
extends Node
|
|
|
|
|
|
func _instance_node(node: Object, parent: Object) -> Object:
|
|
var node_instance = node.instance()
|
|
parent.add_child(node_instance)
|
|
return node_instance
|
|
|
|
|