Game Manager WIP
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEngine;
|
||||
|
||||
public class GameManager : MonoBehaviour
|
||||
@@ -8,10 +9,16 @@ public class GameManager : MonoBehaviour
|
||||
public GameObject[] checkpoints;
|
||||
public GameObject[] players;
|
||||
|
||||
int currentLap = 1;
|
||||
int[] playerLaps;
|
||||
void Start()
|
||||
{
|
||||
|
||||
// reset laps
|
||||
playerLaps = new int[players.Count()];
|
||||
|
||||
for (int i = 0; i < playerLaps.Count(); i++)
|
||||
{
|
||||
playerLaps[i] = 1;
|
||||
}
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
@@ -19,7 +26,14 @@ public class GameManager : MonoBehaviour
|
||||
{
|
||||
foreach (GameObject player in players)
|
||||
{
|
||||
|
||||
try
|
||||
{
|
||||
int checkpointsCollected = player.GetComponent<PlayerController>().checkpointsCollected;
|
||||
}
|
||||
catch
|
||||
{
|
||||
int checkpointsCollected = player.GetComponent<AgentController>().checkpointsCollected;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user