Liberi
An exergame built for kids with CP!
IgnoreShooterCollisions.cs
1 using UnityEngine;
2 using System.Collections;
3 
4 [AddComponentMenu("Liberi/Ignore Shooter Collisions")]
5 public class IgnoreShooterCollisions : MonoBehaviour
6 {
10  public float Duration = 0.1f;
14  public bool IgnoreShooterChildren = true;
15 
16  void Awake ()
17  {
18  if (Duration > 0f)
19  collider.enabled = false;
20  }
21 
22  void OnSpawn (UJeli details)
23  {
24  collider.enabled = true;
25 
26  if (Duration <= 0f)
27  return;
28 
29  if (details.HasChild("Shooter"))
30  {
31  var shooter = details["Shooter"].GameObjectValue;
32 
33  if (shooter != null)
34  {
35  if (IgnoreShooterChildren)
36  {
37  foreach (var col in shooter.GetComponentsInChildren<Collider>())
38  {
39  StartCoroutine(IgnoreAsync(col));
40  }
41  }
42  else
43  {
44  StartCoroutine(IgnoreAsync(shooter.collider));
45  }
46  }
47  }
48  }
49 
50  IEnumerator IgnoreAsync(Collider shooterCollider)
51  {
52  Physics.IgnoreCollision(collider, shooterCollider, true);
53 
54  if (Duration == Mathf.Infinity)
55  yield break;
56 
57  yield return new WaitForSeconds(Duration);
58 
59  if (shooterCollider == null)
60  yield break;
61 
62  if (!shooterCollider.enabled || !collider.enabled)
63  yield break;
64 
65  Physics.IgnoreCollision(collider, shooterCollider, false);
66 
67  enabled = false;
68  }
69 }
float Duration
How long the component should wait before allowing collisions with the shooter.
Unity version of Jeli markup class.
Definition: UJeli.cs:10
bool IgnoreShooterChildren
Whether or not the shooter's children colliders are ignored.