|
@@ -24,6 +24,8 @@ namespace UI.ActivityGetYuanXiao
|
|
public GTextField m_progress;
|
|
public GTextField m_progress;
|
|
public GTextField m_targetScore;
|
|
public GTextField m_targetScore;
|
|
public GGraph m_startEffect;
|
|
public GGraph m_startEffect;
|
|
|
|
+ public GGraph m_startLeft;
|
|
|
|
+ public GGraph m_startRight;
|
|
public const string URL = "ui://tguohf7ux0ey0";
|
|
public const string URL = "ui://tguohf7ux0ey0";
|
|
public const string PACKAGE_NAME = "ActivityGetYuanXiao";
|
|
public const string PACKAGE_NAME = "ActivityGetYuanXiao";
|
|
public const string RES_NAME = "ActivityGetYuanXiaoUI";
|
|
public const string RES_NAME = "ActivityGetYuanXiaoUI";
|
|
@@ -88,6 +90,8 @@ namespace UI.ActivityGetYuanXiao
|
|
m_progress = (GTextField)comp.GetChild("progress");
|
|
m_progress = (GTextField)comp.GetChild("progress");
|
|
m_targetScore = (GTextField)comp.GetChild("targetScore");
|
|
m_targetScore = (GTextField)comp.GetChild("targetScore");
|
|
m_startEffect = (GGraph)comp.GetChild("startEffect");
|
|
m_startEffect = (GGraph)comp.GetChild("startEffect");
|
|
|
|
+ m_startLeft = (GGraph)comp.GetChild("startLeft");
|
|
|
|
+ m_startRight = (GGraph)comp.GetChild("startRight");
|
|
}
|
|
}
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
{
|
|
{
|
|
@@ -110,6 +114,8 @@ namespace UI.ActivityGetYuanXiao
|
|
m_progress = null;
|
|
m_progress = null;
|
|
m_targetScore = null;
|
|
m_targetScore = null;
|
|
m_startEffect = null;
|
|
m_startEffect = null;
|
|
|
|
+ m_startLeft = null;
|
|
|
|
+ m_startRight = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|
|
{
|
|
{
|
|
target.RemoveFromParent();
|
|
target.RemoveFromParent();
|