Updated visuals and polish

This commit is contained in:
2020-01-27 16:31:38 +01:00
parent 0d80cee4aa
commit 12dbfae935
39 changed files with 1486 additions and 28 deletions

View File

@@ -7,6 +7,7 @@ public class Goal : MonoBehaviour
public GameManager gm;
public int playerNumber = 0;
public GoalLight goalLight;
// Start is called before the first frame update
void Start()
{
@@ -32,6 +33,8 @@ public class Goal : MonoBehaviour
this.gm.scorePlayer1 += 1;
}
this.goalLight.LightUp();
this.gm.ResetPositions();
}
}