Rasagar/Library/PackageCache/com.unity.visualeffectgraph/Runtime/Utilities/EventBinding/Implementation/VFXTriggerEventBinder.cs
2024-08-26 23:07:20 +03:00

55 lines
1.4 KiB
C#

#if VFX_HAS_PHYSICS
using System.Collections;
using System.Collections.Generic;
namespace UnityEngine.VFX.Utility
{
[RequireComponent(typeof(Collider))]
class VFXTriggerEventBinder : VFXEventBinderBase
{
public enum Activation
{
OnEnter,
OnExit,
OnStay
}
public List<Collider> colliders = new List<Collider>();
public Activation activation = Activation.OnEnter;
private ExposedProperty positionParameter = "position";
protected override void SetEventAttribute(object[] parameters)
{
Collider collider = (Collider)parameters[0];
eventAttribute.SetVector3(positionParameter, collider.transform.position);
}
private void OnTriggerEnter(Collider other)
{
if (activation != Activation.OnEnter) return;
if (!colliders.Contains(other)) return;
SendEventToVisualEffect(other);
}
private void OnTriggerExit(Collider other)
{
if (activation != Activation.OnExit) return;
if (!colliders.Contains(other)) return;
SendEventToVisualEffect(other);
}
private void OnTriggerStay(Collider other)
{
if (activation != Activation.OnStay) return;
if (!colliders.Contains(other)) return;
SendEventToVisualEffect(other);
}
}
}
#endif