|
@@ -10,6 +10,7 @@ namespace UI.Bag
|
|
|
public GTextInput m_txtSelNum;
|
|
|
public GButton m_btnReduce;
|
|
|
public GButton m_btnAdd;
|
|
|
+ public GLoader m_loaBg;
|
|
|
public GLoader m_loaIcon;
|
|
|
public GTextField m_txtNum;
|
|
|
public const string URL = "ui://2bsz6nelv5notmb";
|
|
@@ -62,6 +63,7 @@ namespace UI.Bag
|
|
|
m_txtSelNum = (GTextInput)comp.GetChild("txtSelNum");
|
|
|
m_btnReduce = (GButton)comp.GetChild("btnReduce");
|
|
|
m_btnAdd = (GButton)comp.GetChild("btnAdd");
|
|
|
+ m_loaBg = (GLoader)comp.GetChild("loaBg");
|
|
|
m_loaIcon = (GLoader)comp.GetChild("loaIcon");
|
|
|
m_txtNum = (GTextField)comp.GetChild("txtNum");
|
|
|
}
|
|
@@ -70,6 +72,7 @@ namespace UI.Bag
|
|
|
m_txtSelNum = null;
|
|
|
m_btnReduce = null;
|
|
|
m_btnAdd = null;
|
|
|
+ m_loaBg = null;
|
|
|
m_loaIcon = null;
|
|
|
m_txtNum = null;
|
|
|
if(disposeTarget && target != null)
|