예제 #1
0
    public static void StartMoveScale(GameObject target, SkillMoveScaleInfo info)
    {
        MovementControl tLockFrame = target.gameObject.GetComponent <MovementControl>();

        if (tLockFrame == null)
        {
            LogicSystem.GfxLog("StartMoveScale component miss!");
            return;
        }
        tLockFrame.StartMoveScale(info);
    }