Beispiel #1
0
    public static void StartMove(GameObject target, SkillMovementInfo info)
    {
        MovementControl mgr = target.GetComponent <MovementControl>();

        if (mgr == null)
        {
            LogicSystem.GfxLog("StartMove movement control miss!");
            return;
        }
        mgr.StartMove(info);
    }