|
@@ -18,6 +18,8 @@ namespace UI.Store
|
|
|
public GButton m_btnGetAll;
|
|
|
public UI_BrocadeWeavReward m_SpecialReward;
|
|
|
public GButton m_btnShow;
|
|
|
+ public GGraph m_holderfTitleEff;
|
|
|
+ public GGraph m_holderfButtonEff;
|
|
|
public const string URL = "ui://p9mtgheoot07tcq";
|
|
|
public const string PACKAGE_NAME = "Store";
|
|
|
public const string RES_NAME = "StoreBrocadeWeavUI";
|
|
@@ -76,6 +78,8 @@ namespace UI.Store
|
|
|
m_btnGetAll = (GButton)comp.GetChild("btnGetAll");
|
|
|
m_SpecialReward = (UI_BrocadeWeavReward)UI_BrocadeWeavReward.Create(comp.GetChild("SpecialReward"));
|
|
|
m_btnShow = (GButton)comp.GetChild("btnShow");
|
|
|
+ m_holderfTitleEff = (GGraph)comp.GetChild("holderfTitleEff");
|
|
|
+ m_holderfButtonEff = (GGraph)comp.GetChild("holderfButtonEff");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -92,6 +96,8 @@ namespace UI.Store
|
|
|
m_SpecialReward.Dispose();
|
|
|
m_SpecialReward = null;
|
|
|
m_btnShow = null;
|
|
|
+ m_holderfTitleEff = null;
|
|
|
+ m_holderfButtonEff = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|