Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/Config/AnimatorEventStopAllEffectsImmediately.cs
2025-08-13 09:26:42 +08:00

11 lines
226 B
C#

namespace MoleMole.Config
{
public class AnimatorEventStopAllEffectsImmediately : AnimatorEvent
{
public override void HandleAnimatorEvent(BaseMonoAnimatorEntity entity)
{
entity.StopAllEffectsImmediately();
}
}
}