mirror of
https://github.com/RPG-Research/bcirpg.git
synced 2024-04-16 14:23:01 +00:00
db69386b6d
Server creation works and others are able to join by entering the creator's IP. Shows a list of player names (currently only shows player #)
10 lines
171 B
GDScript
10 lines
171 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
|
|
|
|
|