|
@@ -16,6 +16,10 @@ namespace UI.League
|
|
|
public GLoader m_StartIndex;
|
|
|
public GLoader m_EndLeagueIndex;
|
|
|
public GLoader m_StartLeagueIndex;
|
|
|
+ public GTextField m_txtRoleScore;
|
|
|
+ public GTextField m_txtLevel;
|
|
|
+ public GTextField m_txtLeagueScore;
|
|
|
+ public GTextField m_txtLevel_2;
|
|
|
public const string URL = "ui://tw70qm9dic4otpz";
|
|
|
public const string PACKAGE_NAME = "League";
|
|
|
public const string RES_NAME = "LeagueTeaPartyRewardUI";
|
|
@@ -72,6 +76,10 @@ namespace UI.League
|
|
|
m_StartIndex = (GLoader)comp.GetChild("StartIndex");
|
|
|
m_EndLeagueIndex = (GLoader)comp.GetChild("EndLeagueIndex");
|
|
|
m_StartLeagueIndex = (GLoader)comp.GetChild("StartLeagueIndex");
|
|
|
+ m_txtRoleScore = (GTextField)comp.GetChild("txtRoleScore");
|
|
|
+ m_txtLevel = (GTextField)comp.GetChild("txtLevel");
|
|
|
+ m_txtLeagueScore = (GTextField)comp.GetChild("txtLeagueScore");
|
|
|
+ m_txtLevel_2 = (GTextField)comp.GetChild("txtLevel");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -84,6 +92,10 @@ namespace UI.League
|
|
|
m_StartIndex = null;
|
|
|
m_EndLeagueIndex = null;
|
|
|
m_StartLeagueIndex = null;
|
|
|
+ m_txtRoleScore = null;
|
|
|
+ m_txtLevel = null;
|
|
|
+ m_txtLeagueScore = null;
|
|
|
+ m_txtLevel_2 = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|