|
@@ -27,6 +27,7 @@ namespace UI.MiniGame
|
|
|
public GLoader m_tipsTwo;
|
|
|
public GLoader m_needIcon2;
|
|
|
public GTextField m_needNum2;
|
|
|
+ public GTextField m_descText;
|
|
|
public const string URL = "ui://wgkh30qjlw8c21";
|
|
|
public const string PACKAGE_NAME = "MiniGame";
|
|
|
public const string RES_NAME = "GameStartUI";
|
|
@@ -94,6 +95,7 @@ namespace UI.MiniGame
|
|
|
m_tipsTwo = (GLoader)comp.GetChild("tipsTwo");
|
|
|
m_needIcon2 = (GLoader)comp.GetChild("needIcon2");
|
|
|
m_needNum2 = (GTextField)comp.GetChild("needNum2");
|
|
|
+ m_descText = (GTextField)comp.GetChild("descText");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -118,6 +120,7 @@ namespace UI.MiniGame
|
|
|
m_tipsTwo = null;
|
|
|
m_needIcon2 = null;
|
|
|
m_needNum2 = null;
|
|
|
+ m_descText = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|