|
@@ -7,8 +7,8 @@ namespace UI.FieldGuide
|
|
public partial class UI_CompGuideItem
|
|
public partial class UI_CompGuideItem
|
|
{
|
|
{
|
|
public GComponent target;
|
|
public GComponent target;
|
|
- public GImage m_bg;
|
|
|
|
public GLoader m_loaderPic;
|
|
public GLoader m_loaderPic;
|
|
|
|
+ public GImage m_bg;
|
|
public GLoader m_loaderTitle;
|
|
public GLoader m_loaderTitle;
|
|
public GTextField m_txtProgress;
|
|
public GTextField m_txtProgress;
|
|
public const string URL = "ui://vqq9h9h4pjipe";
|
|
public const string URL = "ui://vqq9h9h4pjipe";
|
|
@@ -58,15 +58,15 @@ namespace UI.FieldGuide
|
|
|
|
|
|
private void Init(GComponent comp)
|
|
private void Init(GComponent comp)
|
|
{
|
|
{
|
|
- m_bg = (GImage)comp.GetChild("bg");
|
|
|
|
m_loaderPic = (GLoader)comp.GetChild("loaderPic");
|
|
m_loaderPic = (GLoader)comp.GetChild("loaderPic");
|
|
|
|
+ m_bg = (GImage)comp.GetChild("bg");
|
|
m_loaderTitle = (GLoader)comp.GetChild("loaderTitle");
|
|
m_loaderTitle = (GLoader)comp.GetChild("loaderTitle");
|
|
m_txtProgress = (GTextField)comp.GetChild("txtProgress");
|
|
m_txtProgress = (GTextField)comp.GetChild("txtProgress");
|
|
}
|
|
}
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
{
|
|
{
|
|
- m_bg = null;
|
|
|
|
m_loaderPic = null;
|
|
m_loaderPic = null;
|
|
|
|
+ m_bg = null;
|
|
m_loaderTitle = null;
|
|
m_loaderTitle = null;
|
|
m_txtProgress = null;
|
|
m_txtProgress = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|