INameTagSpawner Interface
The interface used for spawning name tags for connected players over different networking frameworks.
Currently there are implementations for Photon Fusion (PlayerNameTagSpawnerFusion) and Unity Netcode for Gameobjects (PlayerNameTagSpawnerNGO) for spawning name tags, but more may be added using this interface.
Indicates whether this player has fully connected to the game/app room.
You can use this to determine when to spawn the name tag.
void Spawn ( string playerName )
Spawns the name tag with the given username for this player.
ParametersplayerNameThe selected username for this player.