mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
19 lines
339 B
C#
19 lines
339 B
C#
namespace MoleMole.Config
|
|
{
|
|
public abstract class AnimatorEvent
|
|
{
|
|
public float normalizedTime;
|
|
|
|
public bool forceTrigger;
|
|
|
|
public bool forceTriggerOnTransitionOut;
|
|
|
|
public abstract void HandleAnimatorEvent(BaseMonoAnimatorEntity entity);
|
|
|
|
public AnimatorEvent Clone()
|
|
{
|
|
return MemberwiseClone() as AnimatorEvent;
|
|
}
|
|
}
|
|
}
|