5 using System.Collections.Generic;
43 get {
return Team != null; }
PlayerProfile PlayerProfile
The profile of this player. Null if the player is a bot.
string PlayerID
Gets the ID of this player. Null if player is a bot.
int SlotIndex
Gets the slot index of this player within its team. Returns -1 if the player is not assigned to any t...
MinigameTeam Team
The team to which this player is assigned, if any.
string PlayerNickname
Gets the nickname of this player. "BOT" if the player is a bot.
Tracks all information for a player in a minigame.
int GetPlayerSlotIndex(MinigamePlayer player)
Gets the slot index of the given player.
int PeerIndex
The peer index of this player. 0 if the player is a bot.
Information about a minigame team.
Color GetSlotColor(int slotIndex)
Gets the slot color of the player slot with the given slot index.
static bool IsLocalPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of the local peer.
static bool IsServerPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of the server.
bool IsLocal
Whether or not this player is locally controlled.
Color SlotColor
Gets the slot color of this player within its team. Returns white if the player is not assigned to an...
static bool IsClientPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of a client.
bool IsHuman
Whether or not this player is a human.
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
GameObject Avatar
The avatar of this player. Null if the player is not assigned to a team.
bool IsBot
Whether or not this player is a bot.
bool IsAssigned
Whether or not this player is assigned to a team.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...