|
@@ -11,6 +11,7 @@ namespace UI.FieldGuide
|
|
|
public UI_ComTravel m_comLocation;
|
|
|
public GTextField m_txtName;
|
|
|
public GTextField m_txtCount;
|
|
|
+ public Transition m_In;
|
|
|
public const string URL = "ui://vqq9h9h4wono2m";
|
|
|
public const string PACKAGE_NAME = "FieldGuide";
|
|
|
public const string RES_NAME = "ListTravelLocationItem";
|
|
@@ -62,6 +63,7 @@ namespace UI.FieldGuide
|
|
|
m_comLocation = (UI_ComTravel)UI_ComTravel.Create(comp.GetChild("comLocation"));
|
|
|
m_txtName = (GTextField)comp.GetChild("txtName");
|
|
|
m_txtCount = (GTextField)comp.GetChild("txtCount");
|
|
|
+ m_In = comp.GetTransition("In");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -70,6 +72,7 @@ namespace UI.FieldGuide
|
|
|
m_comLocation = null;
|
|
|
m_txtName = null;
|
|
|
m_txtCount = null;
|
|
|
+ m_In = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|