|
@@ -17,6 +17,8 @@ namespace UI.MiniGame
|
|
|
public GLoader m_icon128;
|
|
|
public GLoader m_icon256;
|
|
|
public GLoader m_icon512;
|
|
|
+ public GImage m_dic64;
|
|
|
+ public GImage m_dic128;
|
|
|
public GLoader m_dic256;
|
|
|
public GLoader m_dic512;
|
|
|
public const string URL = "ui://wgkh30qjlw8c1n";
|
|
@@ -76,6 +78,8 @@ namespace UI.MiniGame
|
|
|
m_icon128 = (GLoader)comp.GetChild("icon128");
|
|
|
m_icon256 = (GLoader)comp.GetChild("icon256");
|
|
|
m_icon512 = (GLoader)comp.GetChild("icon512");
|
|
|
+ m_dic64 = (GImage)comp.GetChild("dic64");
|
|
|
+ m_dic128 = (GImage)comp.GetChild("dic128");
|
|
|
m_dic256 = (GLoader)comp.GetChild("dic256");
|
|
|
m_dic512 = (GLoader)comp.GetChild("dic512");
|
|
|
}
|
|
@@ -91,6 +95,8 @@ namespace UI.MiniGame
|
|
|
m_icon128 = null;
|
|
|
m_icon256 = null;
|
|
|
m_icon512 = null;
|
|
|
+ m_dic64 = null;
|
|
|
+ m_dic128 = null;
|
|
|
m_dic256 = null;
|
|
|
m_dic512 = null;
|
|
|
if(disposeTarget && target != null)
|