zhaoyang 2 years ago
parent
commit
9fbc4e6435

+ 2 - 2
GameClient/Assets/Game/HotUpdate/Views/DressUp/DressUpFightView.cs

@@ -434,7 +434,7 @@ namespace GFGGame
             bg.SetActive(false);
             Color backgroundColor = Camera.main.backgroundColor;
             Camera.main.backgroundColor = new Color(0, 0, 0, 0);
-            // GRoot.inst.visible = false;
+            GRoot.inst.visible = false;
             yield return new WaitForEndOfFrame();
 
             Rect rect = new Rect(0, 0, UnityEngine.Screen.width, UnityEngine.Screen.height);
@@ -443,7 +443,7 @@ namespace GFGGame
             tex.Apply();//保存像素信息
 
             EquipDataCache.cacher.RoleTextuex = tex;
-            // GRoot.inst.visible = true;
+            GRoot.inst.visible = true;
             bg.SetActive(true);
             Camera.main.backgroundColor = backgroundColor;