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 #)
8 lines
163 B
GDScript
8 lines
163 B
GDScript
extends Control
|
|
|
|
func _set_name(name) -> void:
|
|
$Name.text = name
|
|
|
|
func _set_name_position(counterVal) -> void:
|
|
$Name.rect_position.y = -225 + (50 * counterVal)
|