|
@@ -12,6 +12,7 @@ namespace UI.LuckyBox
|
|
public UI_ButtonTab1 m_btnProb;
|
|
public UI_ButtonTab1 m_btnProb;
|
|
public GList m_list;
|
|
public GList m_list;
|
|
public UI_Component1 m_compText;
|
|
public UI_Component1 m_compText;
|
|
|
|
+ public GTextField m_txtPlayTimes;
|
|
public const string URL = "ui://drx9d1usga16e";
|
|
public const string URL = "ui://drx9d1usga16e";
|
|
public const string PACKAGE_NAME = "LuckyBox";
|
|
public const string PACKAGE_NAME = "LuckyBox";
|
|
public const string RES_NAME = "LuckyBoxPreShowUI";
|
|
public const string RES_NAME = "LuckyBoxPreShowUI";
|
|
@@ -64,6 +65,7 @@ namespace UI.LuckyBox
|
|
m_btnProb = (UI_ButtonTab1)UI_ButtonTab1.Create(comp.GetChild("btnProb"));
|
|
m_btnProb = (UI_ButtonTab1)UI_ButtonTab1.Create(comp.GetChild("btnProb"));
|
|
m_list = (GList)comp.GetChild("list");
|
|
m_list = (GList)comp.GetChild("list");
|
|
m_compText = (UI_Component1)UI_Component1.Create(comp.GetChild("compText"));
|
|
m_compText = (UI_Component1)UI_Component1.Create(comp.GetChild("compText"));
|
|
|
|
+ m_txtPlayTimes = (GTextField)comp.GetChild("txtPlayTimes");
|
|
}
|
|
}
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
{
|
|
{
|
|
@@ -75,6 +77,7 @@ namespace UI.LuckyBox
|
|
m_list = null;
|
|
m_list = null;
|
|
m_compText.Dispose();
|
|
m_compText.Dispose();
|
|
m_compText = null;
|
|
m_compText = null;
|
|
|
|
+ m_txtPlayTimes = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|
|
{
|
|
{
|
|
target.RemoveFromParent();
|
|
target.RemoveFromParent();
|