4 using System.Collections.Generic;
17 foreach (var checkpoint
in FindObjectsOfType<ZoneCheckpoint>())
19 if (checkpoint.name == checkpointId)
28 Gizmos.DrawIcon(transform.position,
"flag",
true);
33 collider.enabled = Game.IsServer;
36 void OnTriggerEnter (Collider other)
38 if (other.CompareTag(
"Avatar"))
41 string playerId = Game.GetPlayerID(avatarPeerIndex);
static GameServer Instance
Gets the sole instance of this game server.
static ZoneCheckpoint Find(string checkpointId)
Find the zone checkpoint with the given ID.
static int GetOwner(GameObject go)
Gets the owner peer index of a given object.
void PushPlayerData(string playerid, string tablePath, string propertyName, string propertyValue)
Pushes a single change to a player's persistent data.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...