Liberi
An exergame built for kids with CP!
DespawnBehaviour.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using Janus;
5 using System.Linq;
6 using System.Reflection;
7 using System;
8 
12 [AddComponentMenu("Liberi/Despawn Behaviour")]
13 public class DespawnBehaviour : MonoBehaviour
14 {
18  public GameObject OffspringPrefab;
22  public bool IsOffspringEffect;
26  public string[] InheritedDetailNodes;
30  public AudioClip Sound;
34  public bool ParticleCleanup;
35 
36  public UJeli OffspringDetails;
37 
38  void Awake ()
39  {
40  OffspringDetails = new UJeli();
41  }
42 
43  void OnDespawn ()
44  {
45  if (OffspringPrefab != null)
46  {
47  var parentDetails = Sync.GetSpawnDetails(this);
48 
49  foreach (var detailNode in InheritedDetailNodes)
50  {
51  if (!parentDetails.HasChild(detailNode))
52  continue;
53 
54  OffspringDetails.AddChild(parentDetails[detailNode].Clone());
55  }
56  }
57 
58  if (Game.IsServer)
59  {
60  if (OffspringPrefab != null)
61  Sync.Spawn(OffspringPrefab, transform.position, transform.GetDirection(), 0, OffspringDetails);
62  }
63  else if (Game.IsClient)
64  {
65  if (OffspringPrefab != null && IsOffspringEffect)
66  Sync.SpawnLocal(OffspringPrefab, transform.position, transform.GetDirection(), OffspringDetails);
67 
68  if (Sound != null)
69  SoundPool.Play(Sound, transform.position);
70 
71  if (ParticleCleanup)
72  CleanUpParticles();
73  }
74  }
75 
76  private void CleanUpParticles ()
77  {
78  foreach (ParticleSystem pSystem in GetComponentsInChildren<ParticleSystem>())
79  {
80  if (pSystem.transform.parent != null)
81  pSystem.transform.parent = null;
82 
83  pSystem.enableEmission = false;
84  pSystem.loop = false;
85 
86  if (pSystem.GetComponent<ParticleCleanup>() == null)
87  pSystem.gameObject.AddComponent<ParticleCleanup>();
88  }
89  }
90 }
bool IsOffspringEffect
Whether or not the spawned offspring object is just a client-side effect as opposed to a synchronized...
bool ParticleCleanup
Whether or not to detatch child particle systems, stop them, and let them finish simulating.
static UJeli GetSpawnDetails(GameObject go)
Gets the spawn details of a given object.
Definition: Sync.Static.cs:241
static GameObject Spawn(string prefabId, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
Definition: Sync.Static.cs:499
Controls an object's behaviour on despawning.
AudioClip Sound
A sound effect to play on despawn.
GameObject OffspringPrefab
The prefab to spawn when this object despawns.
Sound pool. Allows on-demand playing of 3D sounds, with sound properties based on prefab...
Definition: SoundPool.cs:11
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:623
Unity version of Jeli markup class.
Definition: UJeli.cs:10
string[] InheritedDetailNodes
An array of the names of all the nodes from this object's spawn details which should be inherited by ...
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13