Ejemplo n.º 1
0
 public PlayAnimation(Entity target, AnimatorComponent anim, string clip, bool overrideAnim, bool postEvent)
 {
     Target    = target;
     Clip      = clip;
     Animator  = anim;
     Override  = overrideAnim;
     PostEvent = postEvent;
 }
Ejemplo n.º 2
0
 public AnimationEventComplete(Entity target, AnimatorComponent animator, string animation)
 {
     Target    = target;
     Animator  = animator;
     Animation = animation;
 }
Ejemplo n.º 3
0
 public PauseMovementForClip(AnimatorComponent animator, string clip)
 {
     Animator = animator;
     Clip     = clip;
 }