using System.Collections.Generic; using UnityEngine; namespace ET.Client { [ComponentOf] public class LSAnimatorComponent : Entity, IAwake, IUpdate, IDestroy { public Dictionary animationClips = new(); public HashSet Parameter = new(); public MotionType MotionType; public float MontionSpeed; public bool isStop; public float stopSpeed; public Animator Animator; } }