|
@@ -9,6 +9,7 @@ namespace UI.Studio
|
|
|
public GComponent target;
|
|
|
public UI_ComIcon m_ComIcon;
|
|
|
public GTextField m_txtName;
|
|
|
+ public GTextField m_txtNone;
|
|
|
public GImage m_imgLock;
|
|
|
public const string URL = "ui://xz8kxrechbio1u";
|
|
|
public const string PACKAGE_NAME = "Studio";
|
|
@@ -59,6 +60,7 @@ namespace UI.Studio
|
|
|
{
|
|
|
m_ComIcon = (UI_ComIcon)UI_ComIcon.Create(comp.GetChild("ComIcon"));
|
|
|
m_txtName = (GTextField)comp.GetChild("txtName");
|
|
|
+ m_txtNone = (GTextField)comp.GetChild("txtNone");
|
|
|
m_imgLock = (GImage)comp.GetChild("imgLock");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
@@ -66,6 +68,7 @@ namespace UI.Studio
|
|
|
m_ComIcon.Dispose();
|
|
|
m_ComIcon = null;
|
|
|
m_txtName = null;
|
|
|
+ m_txtNone = null;
|
|
|
m_imgLock = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|