|
@@ -9,6 +9,7 @@ namespace UI.Main
|
|
public GComponent target;
|
|
public GComponent target;
|
|
public GLoader m_loaRight;
|
|
public GLoader m_loaRight;
|
|
public GGraph m_holder;
|
|
public GGraph m_holder;
|
|
|
|
+ public Transition m_t0;
|
|
public const string URL = "ui://mfvz4q8kweokii";
|
|
public const string URL = "ui://mfvz4q8kweokii";
|
|
public const string PACKAGE_NAME = "Main";
|
|
public const string PACKAGE_NAME = "Main";
|
|
public const string RES_NAME = "Component7";
|
|
public const string RES_NAME = "Component7";
|
|
@@ -58,11 +59,13 @@ namespace UI.Main
|
|
{
|
|
{
|
|
m_loaRight = (GLoader)comp.GetChild("loaRight");
|
|
m_loaRight = (GLoader)comp.GetChild("loaRight");
|
|
m_holder = (GGraph)comp.GetChild("holder");
|
|
m_holder = (GGraph)comp.GetChild("holder");
|
|
|
|
+ m_t0 = comp.GetTransition("t0");
|
|
}
|
|
}
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
{
|
|
{
|
|
m_loaRight = null;
|
|
m_loaRight = null;
|
|
m_holder = null;
|
|
m_holder = null;
|
|
|
|
+ m_t0 = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|
|
{
|
|
{
|
|
target.RemoveFromParent();
|
|
target.RemoveFromParent();
|