|
@@ -11,6 +11,7 @@ namespace UI.League
|
|
|
public GList m_list;
|
|
|
public GButton m_btnLeft;
|
|
|
public GButton m_btnRight;
|
|
|
+ public Transition m_openViewAction;
|
|
|
public const string URL = "ui://tw70qm9didkd80";
|
|
|
public const string PACKAGE_NAME = "League";
|
|
|
public const string RES_NAME = "ComSkillUp";
|
|
@@ -62,6 +63,7 @@ namespace UI.League
|
|
|
m_list = (GList)comp.GetChild("list");
|
|
|
m_btnLeft = (GButton)comp.GetChild("btnLeft");
|
|
|
m_btnRight = (GButton)comp.GetChild("btnRight");
|
|
|
+ m_openViewAction = comp.GetTransition("openViewAction");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -69,6 +71,7 @@ namespace UI.League
|
|
|
m_list = null;
|
|
|
m_btnLeft = null;
|
|
|
m_btnRight = null;
|
|
|
+ m_openViewAction = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|