|
@@ -9,9 +9,9 @@ namespace UI.TimeTracing
|
|
|
public GComponent target;
|
|
|
public Controller m_c1;
|
|
|
public GImage m_Got;
|
|
|
+ public GImage m_canGet;
|
|
|
public GLoader m_icon;
|
|
|
public GImage m_GotIcon;
|
|
|
- public GImage m_canGet;
|
|
|
public GTextField m_count;
|
|
|
public const string URL = "ui://gayfh946iwcl2u";
|
|
|
public const string PACKAGE_NAME = "TimeTracing";
|
|
@@ -62,18 +62,18 @@ namespace UI.TimeTracing
|
|
|
{
|
|
|
m_c1 = comp.GetController("c1");
|
|
|
m_Got = (GImage)comp.GetChild("Got");
|
|
|
+ m_canGet = (GImage)comp.GetChild("canGet");
|
|
|
m_icon = (GLoader)comp.GetChild("icon");
|
|
|
m_GotIcon = (GImage)comp.GetChild("GotIcon");
|
|
|
- m_canGet = (GImage)comp.GetChild("canGet");
|
|
|
m_count = (GTextField)comp.GetChild("count");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
|
m_c1 = null;
|
|
|
m_Got = null;
|
|
|
+ m_canGet = null;
|
|
|
m_icon = null;
|
|
|
m_GotIcon = null;
|
|
|
- m_canGet = null;
|
|
|
m_count = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|