|
@@ -12,11 +12,12 @@ namespace UI.ActivityDay7
|
|
public GTextField m_TimeStr;
|
|
public GTextField m_TimeStr;
|
|
public GButton m_tip;
|
|
public GButton m_tip;
|
|
public GProgressBar m_ExpProcess;
|
|
public GProgressBar m_ExpProcess;
|
|
- public GTextField m_Score;
|
|
|
|
public GList m_DayList;
|
|
public GList m_DayList;
|
|
public GList m_TaskList;
|
|
public GList m_TaskList;
|
|
public GLoader m_EndIndex;
|
|
public GLoader m_EndIndex;
|
|
public GLoader m_StartIndex;
|
|
public GLoader m_StartIndex;
|
|
|
|
+ public GTextField m_Score;
|
|
|
|
+ public GTextField m_txtLevel;
|
|
public const string URL = "ui://kupdwln7nyhm1";
|
|
public const string URL = "ui://kupdwln7nyhm1";
|
|
public const string PACKAGE_NAME = "ActivityDay7";
|
|
public const string PACKAGE_NAME = "ActivityDay7";
|
|
public const string RES_NAME = "ActivityDay7UI";
|
|
public const string RES_NAME = "ActivityDay7UI";
|
|
@@ -69,11 +70,12 @@ namespace UI.ActivityDay7
|
|
m_TimeStr = (GTextField)comp.GetChild("TimeStr");
|
|
m_TimeStr = (GTextField)comp.GetChild("TimeStr");
|
|
m_tip = (GButton)comp.GetChild("tip");
|
|
m_tip = (GButton)comp.GetChild("tip");
|
|
m_ExpProcess = (GProgressBar)comp.GetChild("ExpProcess");
|
|
m_ExpProcess = (GProgressBar)comp.GetChild("ExpProcess");
|
|
- m_Score = (GTextField)comp.GetChild("Score");
|
|
|
|
m_DayList = (GList)comp.GetChild("DayList");
|
|
m_DayList = (GList)comp.GetChild("DayList");
|
|
m_TaskList = (GList)comp.GetChild("TaskList");
|
|
m_TaskList = (GList)comp.GetChild("TaskList");
|
|
m_EndIndex = (GLoader)comp.GetChild("EndIndex");
|
|
m_EndIndex = (GLoader)comp.GetChild("EndIndex");
|
|
m_StartIndex = (GLoader)comp.GetChild("StartIndex");
|
|
m_StartIndex = (GLoader)comp.GetChild("StartIndex");
|
|
|
|
+ m_Score = (GTextField)comp.GetChild("Score");
|
|
|
|
+ m_txtLevel = (GTextField)comp.GetChild("txtLevel");
|
|
}
|
|
}
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
{
|
|
{
|
|
@@ -82,11 +84,12 @@ namespace UI.ActivityDay7
|
|
m_TimeStr = null;
|
|
m_TimeStr = null;
|
|
m_tip = null;
|
|
m_tip = null;
|
|
m_ExpProcess = null;
|
|
m_ExpProcess = null;
|
|
- m_Score = null;
|
|
|
|
m_DayList = null;
|
|
m_DayList = null;
|
|
m_TaskList = null;
|
|
m_TaskList = null;
|
|
m_EndIndex = null;
|
|
m_EndIndex = null;
|
|
m_StartIndex = null;
|
|
m_StartIndex = null;
|
|
|
|
+ m_Score = null;
|
|
|
|
+ m_txtLevel = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|
|
{
|
|
{
|
|
target.RemoveFromParent();
|
|
target.RemoveFromParent();
|