5 using System.Collections.Generic;
43 [AddComponentMenu(
"Liberi/Collision Effects")]
44 [Script(ScriptRole.View)]
52 Dictionary<PhysicMaterial, CollisionEffectRelationship> _relationshipsByMaterial;
53 Dictionary<Collider, Vector3> _continuousContacts;
57 _relationshipsByMaterial =
new Dictionary<PhysicMaterial, CollisionEffectRelationship>();
59 foreach (var relationship
in Relationships)
61 _relationshipsByMaterial.Add(relationship.OtherMaterial, relationship);
64 _continuousContacts =
new Dictionary<Collider, Vector3>();
78 while (other != null && _continuousContacts.ContainsKey(other))
80 ApplyEffect(relationship, _continuousContacts[other]);
88 void OnCollisionEnter (Collision collision)
93 if (collision.collider == null)
96 var otherMat = collision.collider.sharedMaterial;
103 if (!_relationshipsByMaterial.TryGetValue(otherMat, out relationship))
106 if (relationship.IsContinuous)
108 _continuousContacts.Add(collision.collider, collision.contacts[0].point);
109 StartCoroutine(ApplyContinuousEffect(relationship, collision.collider));
111 else ApplyEffect(relationship, collision.contacts[0].point);
114 void OnCollisionStay (Collision collision)
119 if (_continuousContacts.ContainsKey(collision.collider))
120 _continuousContacts[collision.collider] = collision.contacts[0].point;
123 void OnCollisionExit (Collision collision)
128 if (collision.collider == null)
131 var otherMat = collision.collider.sharedMaterial;
133 if (otherMat == null)
138 if (!_relationshipsByMaterial.TryGetValue(otherMat, out relationship))
141 if (relationship.IsContinuous)
143 _continuousContacts.Remove(collision.collider);
147 void OnTriggerEnter (Collider other)
152 if (other.sharedMaterial == null)
157 if (!_relationshipsByMaterial.TryGetValue(other.sharedMaterial, out relationship))
160 if (relationship.IsContinuous)
162 _continuousContacts.Add(other, PhysicsUtils.GetTriggerHitLocation(collider, other, relationship.TriggerHitLocationMode));
163 StartCoroutine(ApplyContinuousEffect(relationship, other));
165 else ApplyEffect(relationship, PhysicsUtils.GetTriggerHitLocation(collider, other, relationship.TriggerHitLocationMode));
168 void OnTriggerStay (Collider other)
173 if (!_continuousContacts.ContainsKey(other))
178 if (!_relationshipsByMaterial.TryGetValue(other.sharedMaterial, out relationship))
181 _continuousContacts[other] = PhysicsUtils.GetTriggerHitLocation(collider, other, relationship.TriggerHitLocationMode);
184 void OnTriggerExit (Collider other)
189 if (other.sharedMaterial == null)
194 if (!_relationshipsByMaterial.TryGetValue(other.sharedMaterial, out relationship))
197 if (relationship.IsContinuous)
199 _continuousContacts.Remove(other);
TriggerHitLocationMode TriggerHitLocationMode
The hit location mode to determine the point of collision if our collider is a trigger.
PhysicMaterial OtherMaterial
The incoming physic material.
CollisionEffectRelationship[] Relationships
An array of different effect relationships this object has with various incoming physic materials...
float EffectInterval
The interval at which to apply the effect if it is continuous.
GameObject VisualEffectPrefab
A visual effect to spawn on collision.
Manages client-side collision effects for this object.
AudioClip SoundEffect
A sound effect to play on collision.
Sound pool. Allows on-demand playing of 3D sounds, with sound properties based on prefab...
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
bool IsContinuous
Whether or not the effect is continuously applied.
Describes an effect relationship between a collider and an incoming physic material.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...