HeroAnimtionStateInfo.cs 292 B

1234567891011121314
  1. using Animancer;
  2. namespace GameLogic.Combat.Hero
  3. {
  4. public class HeroAnimtionStateInfo : HeroPlayStateInfoBasic
  5. {
  6. public AnimancerState animancerState;
  7. public override void SetSpeed(float speed)
  8. {
  9. animancerState.Speed = speed;
  10. }
  11. }
  12. }