Liberi
An exergame built for kids with CP!
CollisionDespawner.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 
8 [Script(ScriptRole.Logic)]
9 public class CollisionDespawner : MonoBehaviour
10 {
15  public List<string> Tags;
16 
17  void OnOutgoingHit(GameObject hitObject, HitInfo hit)
18  {
19  if (Tags.Count == 0)
20  {
21  Sync.Despawn(this);
22  return;
23  }
24 
25  foreach (var tag in Tags)
26  {
27  if (hitObject.collider.CompareTag(tag))
28  {
29  Sync.Despawn(this);
30  break;
31  }
32  }
33  }
34 
35  void OnCollisionEnter(Collision collision)
36  {
37  if (collision.collider.GetComponent<Vitals>() == null)
38  {
39  if (Tags.Count == 0)
40  {
41  Sync.Despawn(this);
42  return;
43  }
44 
45  foreach (var tag in Tags)
46  {
47  if (collision.collider.CompareTag(tag))
48  {
49  Sync.Despawn(this);
50  break;
51  }
52  }
53  }
54  }
55 
56  void OnTriggerEnter(Collider other)
57  {
58  if (!collider.isTrigger)
59  return;
60 
61  if (other.collider.GetComponent<Vitals>() == null)
62  {
63  if (Tags.Count == 0)
64  {
65  Sync.Despawn(this);
66  return;
67  }
68 
69  foreach (var tag in Tags)
70  {
71  if (other.collider.CompareTag(tag))
72  {
73  Sync.Despawn(this);
74  break;
75  }
76  }
77  }
78  }
79 }
static void Despawn(GameObject go)
Despawn the given object.
Definition: Sync.Static.cs:779
An object that should despawn when it collider with others.
Describes a hit on an object.
Definition: HitInfo.cs:12
Manages the "vitals" of an object (health, regeneration, damage).
Definition: Vitals.cs:17
List< string > Tags
A list of Tags. The object will only despawn if the collided object has one of these tags...
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13