4 using System.Collections.Generic;
10 [AddComponentMenu(
"Liberi/Object Spawner")]
11 [RequireComponent(typeof(AudioSource))]
14 public GameObject[] SpawnedObjects
16 get {
return _spawnedObjects.Where(obj => obj != null).ToArray(); }
19 public GameObject ObjectPrefab;
20 public GameObject AlternatePrefab;
21 [Range (0, 1)]
public float AlternatePrefabChance;
22 public GameObject SpawnEffectPrefab;
23 public AudioClip SpawnSound;
24 public UJeli ObjectSpawnDetails;
25 public Texture2D GizmoTexture;
26 public bool SpawnImmediately;
28 Timeline<bool> _spawnEvents;
29 List<GameObject> _spawnedObjects;
33 _spawnEvents =
Sync.CreateEvent<
bool>();
34 _spawnedObjects =
new List<GameObject>();
39 if (GizmoTexture != null)
40 Gizmos.DrawIcon(transform.position, GizmoTexture.name,
true);
46 _spawnEvents.EntryPassed += OnSpawnEvent;
48 if (Game.IsServer && SpawnImmediately)
52 public GameObject SpawnObject ()
56 GameObject prefab = ObjectPrefab;
58 if (AlternatePrefab != null)
59 prefab = Random.Range(0.0f, 1.0f) > AlternatePrefabChance ? ObjectPrefab : AlternatePrefab;
61 GameObject go =
Sync.
Spawn(prefab, transform.position, 0, ObjectSpawnDetails);
62 go.transform.rotation = transform.rotation;
66 go.GetComponent<
Sync>().Despawned += OnObjectDespawned;
67 _spawnedObjects.Add(go);
68 _spawnEvents[0] =
true;
76 public void DespawnAllObjects ()
78 foreach (var mob
in _spawnedObjects.ToArray())
85 void OnObjectDespawned (GameObject go)
87 _spawnedObjects.Remove(go);
90 void OnSpawnEvent (Timeline<bool> timeline, TimelineEntry<bool> entry)
94 if (SpawnEffectPrefab != null)
97 if (SpawnSound != null)
98 this.PlayPooledSound(SpawnSound);
static bool IsClient
Gets whether or not this peer is a client.
static void Despawn(GameObject go)
Despawn the given object.
static bool IsServer
Gets whether or not this peer is the server.
static GameObject Spawn(string prefabId, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Unity version of Jeli markup class.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...