|
@@ -11,6 +11,7 @@ namespace UI.Launcher
|
|
|
public GProgressBar m_progressBar;
|
|
|
public GTextField m_txtDescLeft;
|
|
|
public GTextField m_txtVersion;
|
|
|
+ public GImage m_imgLogo;
|
|
|
public GTextField m_txtBottom;
|
|
|
public GTextField m_txtDescRight;
|
|
|
public const string URL = "ui://mgs5yrnjl55o1";
|
|
@@ -64,6 +65,7 @@ namespace UI.Launcher
|
|
|
m_progressBar = (GProgressBar)comp.GetChild("progressBar");
|
|
|
m_txtDescLeft = (GTextField)comp.GetChild("txtDescLeft");
|
|
|
m_txtVersion = (GTextField)comp.GetChild("txtVersion");
|
|
|
+ m_imgLogo = (GImage)comp.GetChild("imgLogo");
|
|
|
m_txtBottom = (GTextField)comp.GetChild("txtBottom");
|
|
|
m_txtDescRight = (GTextField)comp.GetChild("txtDescRight");
|
|
|
}
|
|
@@ -73,6 +75,7 @@ namespace UI.Launcher
|
|
|
m_progressBar = null;
|
|
|
m_txtDescLeft = null;
|
|
|
m_txtVersion = null;
|
|
|
+ m_imgLogo = null;
|
|
|
m_txtBottom = null;
|
|
|
m_txtDescRight = null;
|
|
|
if(disposeTarget && target != null)
|