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