- Edited
I am trying to make a 3d online multiplayer game. I am sending the player positions in a dictionary. How can I render the players with the proper name and position?
#For example I have a sample json
{"player1": {"x": 0.003, "y": 1.002, "z": 3.002}, "player2": {"x": 0.043, "y": 1.402, "z": 3.702}}
#I want to create players with the name on top
I have a KinematicBody Node with the name player. Please tell me how to render the players in proper positions.