|
@@ -7,7 +7,7 @@ namespace UI.CommonGame
|
|
|
public partial class UI_GetSuitItemUI
|
|
|
{
|
|
|
public GComponent target;
|
|
|
- public GLoader m_bg;
|
|
|
+ public GLoader m_loaBg;
|
|
|
public GGraph m_holderEffect;
|
|
|
public GGraph m_holder;
|
|
|
public GTextField m_txtName;
|
|
@@ -60,7 +60,7 @@ namespace UI.CommonGame
|
|
|
|
|
|
private void Init(GComponent comp)
|
|
|
{
|
|
|
- m_bg = (GLoader)comp.GetChild("bg");
|
|
|
+ m_loaBg = (GLoader)comp.GetChild("loaBg");
|
|
|
m_holderEffect = (GGraph)comp.GetChild("holderEffect");
|
|
|
m_holder = (GGraph)comp.GetChild("holder");
|
|
|
m_txtName = (GTextField)comp.GetChild("txtName");
|
|
@@ -69,7 +69,7 @@ namespace UI.CommonGame
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
|
- m_bg = null;
|
|
|
+ m_loaBg = null;
|
|
|
m_holderEffect = null;
|
|
|
m_holder = null;
|
|
|
m_txtName = null;
|