Browse Source

更新部分背景图的名称和位置

leiyasi 1 year ago
parent
commit
f4461f753f

+ 3 - 3
GameClient/Assets/Game/HotUpdate/FairyGUI/GenCode/Common/UI_AlertUI.cs

@@ -8,7 +8,7 @@ namespace UI.Common
     {
         public GComponent target;
         public Controller m_checkType;
-        public GGraph m_graphBg;
+        public GGraph m_mask;
         public GTextField m_txtContent;
         public GTextField m_txtTips;
         public GButton m_btnLeft;
@@ -62,7 +62,7 @@ namespace UI.Common
         private void Init(GComponent comp)
         {
             m_checkType = comp.GetController("checkType");
-            m_graphBg = (GGraph)comp.GetChild("graphBg");
+            m_mask = (GGraph)comp.GetChild("mask");
             m_txtContent = (GTextField)comp.GetChild("txtContent");
             m_txtTips = (GTextField)comp.GetChild("txtTips");
             m_btnLeft = (GButton)comp.GetChild("btnLeft");
@@ -72,7 +72,7 @@ namespace UI.Common
         public void Dispose(bool disposeTarget = false)
         {
             m_checkType = null;
-            m_graphBg = null;
+            m_mask = null;
             m_txtContent = null;
             m_txtTips = null;
             m_btnLeft = null;

+ 3 - 3
GameClient/Assets/Game/HotUpdate/FairyGUI/GenCode/XiuFang/UI_XiuFangUI.cs

@@ -7,7 +7,7 @@ namespace UI.XiuFang
     public partial class UI_XiuFangUI
     {
         public GComponent target;
-        public GLoader m_bg;
+        public GLoader m_loaBg;
         public GButton m_btnBack;
         public UI_Component m_component;
         public const string URL = "ui://kv0ad4wy9xlo0";
@@ -57,13 +57,13 @@ namespace UI.XiuFang
 
         private void Init(GComponent comp)
         {
-            m_bg = (GLoader)comp.GetChild("bg");
+            m_loaBg = (GLoader)comp.GetChild("loaBg");
             m_btnBack = (GButton)comp.GetChild("btnBack");
             m_component = (UI_Component)UI_Component.Create(comp.GetChild("component"));
         }
         public void Dispose(bool disposeTarget = false)
         {
-            m_bg = null;
+            m_loaBg = null;
             m_btnBack = null;
             m_component.Dispose();
             m_component = null;

+ 1 - 1
GameClient/Assets/Game/HotUpdate/Views/XiuFang/XiuFangView.cs

@@ -36,7 +36,7 @@ namespace GFGGame
             _ui.m_component.m_btnClothingUpgrade.target.onClick.Add(OnClickBtnClothingUpgrade);
             _ui.m_component.m_btnDecompose.target.onClick.Add(OnClickBtnDecompose);
 
-            _ui.m_bg.url = ResPathUtil.GetBgImgPath("xf_bg");
+            _ui.m_loaBg.url = ResPathUtil.GetBgImgPath("xf_bg");
         }
         protected override void AddEventListener()
         {

BIN
GameClient/Assets/ResIn/UI/Common/Common_fui.bytes


BIN
GameClient/Assets/ResIn/UI/InstanceZones/InstanceZones_fui.bytes


BIN
GameClient/Assets/ResIn/UI/Loading/Loading_fui.bytes


BIN
GameClient/Assets/ResIn/UI/RoleInfo/RoleInfo_fui.bytes


BIN
GameClient/Assets/ResIn/UI/Store/Store_fui.bytes


BIN
GameClient/Assets/ResIn/UI/XiuFang/XiuFang_fui.bytes