|
@@ -11,6 +11,7 @@ namespace UI.Arena
|
|
|
public GProgressBar m_progressBar1;
|
|
|
public GGraph m_holder;
|
|
|
public GImage m_imgAni;
|
|
|
+ public GTextField m_txtDescLeft;
|
|
|
public const string URL = "ui://4lc5fhlbrv0954";
|
|
|
public const string PACKAGE_NAME = "Arena";
|
|
|
public const string RES_NAME = "ArenaLoadingUI";
|
|
@@ -62,6 +63,7 @@ namespace UI.Arena
|
|
|
m_progressBar1 = (GProgressBar)comp.GetChild("progressBar1");
|
|
|
m_holder = (GGraph)comp.GetChild("holder");
|
|
|
m_imgAni = (GImage)comp.GetChild("imgAni");
|
|
|
+ m_txtDescLeft = (GTextField)comp.GetChild("txtDescLeft");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -69,6 +71,7 @@ namespace UI.Arena
|
|
|
m_progressBar1 = null;
|
|
|
m_holder = null;
|
|
|
m_imgAni = null;
|
|
|
+ m_txtDescLeft = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|