|
@@ -11,6 +11,7 @@ namespace UI.DailyWelfare
|
|
|
public GComponent m_comValueBar;
|
|
|
public GButton m_btnback;
|
|
|
public UI_ComList m_comList;
|
|
|
+ public Transition m_t0;
|
|
|
public const string URL = "ui://t8nwuj7ifqor0";
|
|
|
public const string PACKAGE_NAME = "DailyWelfare";
|
|
|
public const string RES_NAME = "DailyWelfareUI";
|
|
@@ -62,6 +63,7 @@ namespace UI.DailyWelfare
|
|
|
m_comValueBar = (GComponent)comp.GetChild("comValueBar");
|
|
|
m_btnback = (GButton)comp.GetChild("btnback");
|
|
|
m_comList = (UI_ComList)UI_ComList.Create(comp.GetChild("comList"));
|
|
|
+ m_t0 = comp.GetTransition("t0");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -70,6 +72,7 @@ namespace UI.DailyWelfare
|
|
|
m_btnback = null;
|
|
|
m_comList.Dispose();
|
|
|
m_comList = null;
|
|
|
+ m_t0 = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|