public void Reset()
    {
        ObjArray LvObj = GetObjT <ObjArray> (Lv);
        ObjArray TuObj = LvObj.GetObjT <ObjArray> (Tu);

        OnOnlyObjs(Lv);
        LvObj.OnOnlyObjs(Tu);
        TuObj.OnOnlyObjs(Mod);

        UI.Images = GetComponentsInChildren <Image> ();
        if (Mod != 1)
        {
            UI.Tween_Color.Mod = 0;
            for (int i = 0; i < UI.Images.Length; i++)
            {
                UI.Images [i].color = Color.white;
            }
        }
        else
        {
            UI.Tween_Color.Play(true);
        }
    }