Пример #1
0
        public static async ETTask <bool> MoveToAsync(this Unit unit, List <Vector3> path)
        {
            float         speed         = unit.GetComponent <NumericComponent>().GetAsFloat(NumericType.Speed);
            MoveComponent moveComponent = unit.GetComponent <MoveComponent>();
            bool          ret           = await moveComponent.MoveToAsync(path, speed);

            return(ret);
        }