Liberi
An exergame built for kids with CP!
IgnoreAvatarCollisions.cs
1 using UnityEngine;
2 using System.Collections;
3 
9 public class IgnoreAvatarCollisions : MonoBehaviour
10 {
11  void OnSpawn()
12  {
13  foreach (var avatar in Minigame.Instance.PlayerAvatars)
14  {
15  Physics.IgnoreCollision(collider, avatar.collider);
16  }
17  }
18 }
static Minigame Instance
Gets the sole instance of this minigame.
Definition: Minigame.cs:30
GameObject[] PlayerAvatars
Gets an array containing the avatars for all players in this minigame (humans and bots)...
Definition: Minigame.cs:79
Class for general minigame management.
Definition: Minigame.cs:12
Force the object to Ignore Collisions with other Avatars OnSpawn. Note that this won't work on Avatar...