|
@@ -10,6 +10,7 @@ namespace UI.DressUp
|
|
|
public Controller m_c1;
|
|
|
public GTextField m_txtNeedName;
|
|
|
public GList m_listTag;
|
|
|
+ public GImage m_imgGot;
|
|
|
public const string URL = "ui://mbo439wbpjip31";
|
|
|
public const string PACKAGE_NAME = "DressUp";
|
|
|
public const string RES_NAME = "Component1";
|
|
@@ -60,12 +61,14 @@ namespace UI.DressUp
|
|
|
m_c1 = comp.GetController("c1");
|
|
|
m_txtNeedName = (GTextField)comp.GetChild("txtNeedName");
|
|
|
m_listTag = (GList)comp.GetChild("listTag");
|
|
|
+ m_imgGot = (GImage)comp.GetChild("imgGot");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
|
m_c1 = null;
|
|
|
m_txtNeedName = null;
|
|
|
m_listTag = null;
|
|
|
+ m_imgGot = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|