|
@@ -12,13 +12,13 @@ namespace UI.ClothingSynthetic
|
|
public GButton m_btnBack;
|
|
public GButton m_btnBack;
|
|
public GButton m_btnHome;
|
|
public GButton m_btnHome;
|
|
public GComponent m_valueBar;
|
|
public GComponent m_valueBar;
|
|
- public GTextField m_txtSuitName;
|
|
|
|
public UI_CompItemInfo m_compItemInfo;
|
|
public UI_CompItemInfo m_compItemInfo;
|
|
public GButton m_btnProduction;
|
|
public GButton m_btnProduction;
|
|
public GTextField m_txtProgress;
|
|
public GTextField m_txtProgress;
|
|
public GList m_listClothing;
|
|
public GList m_listClothing;
|
|
public GList m_listMaterias;
|
|
public GList m_listMaterias;
|
|
public GTextField m_txtCost;
|
|
public GTextField m_txtCost;
|
|
|
|
+ public GTextField m_txtSuitName;
|
|
public const string URL = "ui://4f294tdkj5391";
|
|
public const string URL = "ui://4f294tdkj5391";
|
|
public const string PACKAGE_NAME = "ClothingSynthetic";
|
|
public const string PACKAGE_NAME = "ClothingSynthetic";
|
|
public const string RES_NAME = "ClothingSyntheticUI";
|
|
public const string RES_NAME = "ClothingSyntheticUI";
|
|
@@ -71,13 +71,13 @@ namespace UI.ClothingSynthetic
|
|
m_btnBack = (GButton)comp.GetChild("btnBack");
|
|
m_btnBack = (GButton)comp.GetChild("btnBack");
|
|
m_btnHome = (GButton)comp.GetChild("btnHome");
|
|
m_btnHome = (GButton)comp.GetChild("btnHome");
|
|
m_valueBar = (GComponent)comp.GetChild("valueBar");
|
|
m_valueBar = (GComponent)comp.GetChild("valueBar");
|
|
- m_txtSuitName = (GTextField)comp.GetChild("txtSuitName");
|
|
|
|
m_compItemInfo = (UI_CompItemInfo)UI_CompItemInfo.Create(comp.GetChild("compItemInfo"));
|
|
m_compItemInfo = (UI_CompItemInfo)UI_CompItemInfo.Create(comp.GetChild("compItemInfo"));
|
|
m_btnProduction = (GButton)comp.GetChild("btnProduction");
|
|
m_btnProduction = (GButton)comp.GetChild("btnProduction");
|
|
m_txtProgress = (GTextField)comp.GetChild("txtProgress");
|
|
m_txtProgress = (GTextField)comp.GetChild("txtProgress");
|
|
m_listClothing = (GList)comp.GetChild("listClothing");
|
|
m_listClothing = (GList)comp.GetChild("listClothing");
|
|
m_listMaterias = (GList)comp.GetChild("listMaterias");
|
|
m_listMaterias = (GList)comp.GetChild("listMaterias");
|
|
m_txtCost = (GTextField)comp.GetChild("txtCost");
|
|
m_txtCost = (GTextField)comp.GetChild("txtCost");
|
|
|
|
+ m_txtSuitName = (GTextField)comp.GetChild("txtSuitName");
|
|
}
|
|
}
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
{
|
|
{
|
|
@@ -87,7 +87,6 @@ namespace UI.ClothingSynthetic
|
|
m_btnBack = null;
|
|
m_btnBack = null;
|
|
m_btnHome = null;
|
|
m_btnHome = null;
|
|
m_valueBar = null;
|
|
m_valueBar = null;
|
|
- m_txtSuitName = null;
|
|
|
|
m_compItemInfo.Dispose();
|
|
m_compItemInfo.Dispose();
|
|
m_compItemInfo = null;
|
|
m_compItemInfo = null;
|
|
m_btnProduction = null;
|
|
m_btnProduction = null;
|
|
@@ -95,6 +94,7 @@ namespace UI.ClothingSynthetic
|
|
m_listClothing = null;
|
|
m_listClothing = null;
|
|
m_listMaterias = null;
|
|
m_listMaterias = null;
|
|
m_txtCost = null;
|
|
m_txtCost = null;
|
|
|
|
+ m_txtSuitName = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|
|
{
|
|
{
|
|
target.RemoveFromParent();
|
|
target.RemoveFromParent();
|