Liberi
An exergame built for kids with CP!
ZoneCheckpoint.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 
10 public class ZoneCheckpoint : MonoBehaviour
11 {
15  public static ZoneCheckpoint Find (string checkpointId)
16  {
17  foreach (var checkpoint in FindObjectsOfType<ZoneCheckpoint>())
18  {
19  if (checkpoint.name == checkpointId)
20  return checkpoint;
21  }
22 
23  return null;
24  }
25 
26  void OnDrawGizmos ()
27  {
28  Gizmos.DrawIcon(transform.position, "flag", true);
29  }
30 
31  void Start ()
32  {
33  collider.enabled = Game.IsServer;
34  }
35 
36  void OnTriggerEnter (Collider other)
37  {
38  if (other.CompareTag("Avatar"))
39  {
40  int avatarPeerIndex = Sync.GetOwner(other.gameObject);
41  string playerId = Game.GetPlayerID(avatarPeerIndex);
42 
43  if (playerId != null)
44  {
45  GameServer.Instance.PushPlayerData(playerId, "Location", "LastCheckpoint", name);
46  }
47  }
48  }
49 }
static GameServer Instance
Gets the sole instance of this game server.
Definition: GameServer.cs:95
Main game server class.
Definition: GameServer.cs:19
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.
Definition: Sync.Static.cs:263
void PushPlayerData(string playerid, string tablePath, string propertyName, string propertyValue)
Pushes a single change to a player's persistent data.
Definition: GameServer.cs:661
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13
Zone checkpoint.