void SetTarget()
    {
        if (Tutorial.ProgressType == 0)//강제진행.
        {
            TargetData data;
            data.Layer      = TutoSupport.gameObject.layer;
            data.Parent     = TutoSupport.transform.parent;
            data.InstanceID = TutoSupport.GetInstanceID();

            TutoSupport.transform.parent = OverDepthTf;
            TutoSupport.RefreshWidgets();

            DataList.Add(data);
        }

        SetTouch("this");
        AddEventDelegate(true, "this", delegate() {
            //TutoSupport.IsOnClick = true;
            TutoSupport.OnClickSupport();

            TouchObj.SetActive(false);
            for (int i = 0; i < DataList.Count; i++)
            {
                if (!TutoSupport.GetInstanceID().Equals(DataList[i].InstanceID))
                {
                    continue;
                }

                TutoSupport.transform.parent = DataList[i].Parent;
                TutoSupport.gameObject.layer = DataList[i].Layer;
                TutoSupport.RefreshWidgets();
                DataList.RemoveAt(i);
                break;
            }

            if (TouchObj.transform.parent != OverDepthTf)
            {
                TouchObj.transform.SetParent(OverDepthTf);
                TouchObj.transform.localPosition = Vector3.zero;
            }

            if (!string.IsNullOrEmpty(TutoSupport.StayPanelPath))
            {
                StartCoroutine(StayPanel(TutoSupport.StayPanelPath, null, () =>
                {
                    if (!NextTutorial && CurType != TutorialType.QUEST)
                    {
                        SceneManager.instance.CurTutorial = CurType;
                    }

                    TutoSupport.ChangeTutoType();
                }, null, 15));
            }
            else if (!NextTutorial && CurType != TutorialType.QUEST)
            {
                SceneManager.instance.CurTutorial = CurType;
            }
            else if (TutoSupport != null)
            {
                TutoSupport.ChangeTutoType();
                TutoSupport.CheckNextTuto();
            }
        });
    }