zhaoyang 2 년 전
부모
커밋
9fbc4e6435
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      GameClient/Assets/Game/HotUpdate/Views/DressUp/DressUpFightView.cs

+ 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;