|
@@ -9,7 +9,10 @@ namespace UI.ActivityHuaRongDao
|
|
public GComponent target;
|
|
public GComponent target;
|
|
public Controller m_state;
|
|
public Controller m_state;
|
|
public Controller m_activityID;
|
|
public Controller m_activityID;
|
|
|
|
+ public GGraph m_mask;
|
|
|
|
+ public GButton m_btnClose;
|
|
public GLoader m_loaBg;
|
|
public GLoader m_loaBg;
|
|
|
|
+ public GButton m_btnBack;
|
|
public UI_item m_item;
|
|
public UI_item m_item;
|
|
public GTextField m_seconds;
|
|
public GTextField m_seconds;
|
|
public GGroup m_tips;
|
|
public GGroup m_tips;
|
|
@@ -19,9 +22,8 @@ namespace UI.ActivityHuaRongDao
|
|
public UI_items m_items;
|
|
public UI_items m_items;
|
|
public UI_items m_itemsOrigin;
|
|
public UI_items m_itemsOrigin;
|
|
public GGraph m_maskTouch;
|
|
public GGraph m_maskTouch;
|
|
- public GGraph m_mask;
|
|
|
|
|
|
+ public GGraph m_mask_2;
|
|
public GGraph m_maskGlobal;
|
|
public GGraph m_maskGlobal;
|
|
- public GButton m_btnBack;
|
|
|
|
public Transition m_showMask;
|
|
public Transition m_showMask;
|
|
public Transition m_hideMask;
|
|
public Transition m_hideMask;
|
|
public const string URL = "ui://wf8geywtnx120";
|
|
public const string URL = "ui://wf8geywtnx120";
|
|
@@ -73,7 +75,10 @@ namespace UI.ActivityHuaRongDao
|
|
{
|
|
{
|
|
m_state = comp.GetController("state");
|
|
m_state = comp.GetController("state");
|
|
m_activityID = comp.GetController("activityID");
|
|
m_activityID = comp.GetController("activityID");
|
|
|
|
+ m_mask = (GGraph)comp.GetChild("mask");
|
|
|
|
+ m_btnClose = (GButton)comp.GetChild("btnClose");
|
|
m_loaBg = (GLoader)comp.GetChild("loaBg");
|
|
m_loaBg = (GLoader)comp.GetChild("loaBg");
|
|
|
|
+ m_btnBack = (GButton)comp.GetChild("btnBack");
|
|
m_item = (UI_item)UI_item.Create(comp.GetChild("item"));
|
|
m_item = (UI_item)UI_item.Create(comp.GetChild("item"));
|
|
m_seconds = (GTextField)comp.GetChild("seconds");
|
|
m_seconds = (GTextField)comp.GetChild("seconds");
|
|
m_tips = (GGroup)comp.GetChild("tips");
|
|
m_tips = (GGroup)comp.GetChild("tips");
|
|
@@ -83,9 +88,8 @@ namespace UI.ActivityHuaRongDao
|
|
m_items = (UI_items)UI_items.Create(comp.GetChild("items"));
|
|
m_items = (UI_items)UI_items.Create(comp.GetChild("items"));
|
|
m_itemsOrigin = (UI_items)UI_items.Create(comp.GetChild("itemsOrigin"));
|
|
m_itemsOrigin = (UI_items)UI_items.Create(comp.GetChild("itemsOrigin"));
|
|
m_maskTouch = (GGraph)comp.GetChild("maskTouch");
|
|
m_maskTouch = (GGraph)comp.GetChild("maskTouch");
|
|
- m_mask = (GGraph)comp.GetChild("mask");
|
|
|
|
|
|
+ m_mask_2 = (GGraph)comp.GetChild("mask");
|
|
m_maskGlobal = (GGraph)comp.GetChild("maskGlobal");
|
|
m_maskGlobal = (GGraph)comp.GetChild("maskGlobal");
|
|
- m_btnBack = (GButton)comp.GetChild("btnBack");
|
|
|
|
m_showMask = comp.GetTransition("showMask");
|
|
m_showMask = comp.GetTransition("showMask");
|
|
m_hideMask = comp.GetTransition("hideMask");
|
|
m_hideMask = comp.GetTransition("hideMask");
|
|
}
|
|
}
|
|
@@ -93,7 +97,10 @@ namespace UI.ActivityHuaRongDao
|
|
{
|
|
{
|
|
m_state = null;
|
|
m_state = null;
|
|
m_activityID = null;
|
|
m_activityID = null;
|
|
|
|
+ m_mask = null;
|
|
|
|
+ m_btnClose = null;
|
|
m_loaBg = null;
|
|
m_loaBg = null;
|
|
|
|
+ m_btnBack = null;
|
|
m_item.Dispose();
|
|
m_item.Dispose();
|
|
m_item = null;
|
|
m_item = null;
|
|
m_seconds = null;
|
|
m_seconds = null;
|
|
@@ -106,9 +113,8 @@ namespace UI.ActivityHuaRongDao
|
|
m_itemsOrigin.Dispose();
|
|
m_itemsOrigin.Dispose();
|
|
m_itemsOrigin = null;
|
|
m_itemsOrigin = null;
|
|
m_maskTouch = null;
|
|
m_maskTouch = null;
|
|
- m_mask = null;
|
|
|
|
|
|
+ m_mask_2 = null;
|
|
m_maskGlobal = null;
|
|
m_maskGlobal = null;
|
|
- m_btnBack = null;
|
|
|
|
m_showMask = null;
|
|
m_showMask = null;
|
|
m_hideMask = null;
|
|
m_hideMask = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|