|
@@ -10,6 +10,7 @@ namespace UI.CommonGame
|
|
|
public GLoader m_loaBg;
|
|
|
public GImage m_imgTitle;
|
|
|
public UI_ComListReward m_comListReward;
|
|
|
+ public GGraph m_holderTitle;
|
|
|
public GGroup m_grp;
|
|
|
public const string URL = "ui://eg2y0ldpm9wm8q";
|
|
|
public const string PACKAGE_NAME = "CommonGame";
|
|
@@ -61,6 +62,7 @@ namespace UI.CommonGame
|
|
|
m_loaBg = (GLoader)comp.GetChild("loaBg");
|
|
|
m_imgTitle = (GImage)comp.GetChild("imgTitle");
|
|
|
m_comListReward = (UI_ComListReward)UI_ComListReward.Create(comp.GetChild("comListReward"));
|
|
|
+ m_holderTitle = (GGraph)comp.GetChild("holderTitle");
|
|
|
m_grp = (GGroup)comp.GetChild("grp");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
@@ -69,6 +71,7 @@ namespace UI.CommonGame
|
|
|
m_imgTitle = null;
|
|
|
m_comListReward.Dispose();
|
|
|
m_comListReward = null;
|
|
|
+ m_holderTitle = null;
|
|
|
m_grp = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|