|
@@ -18,6 +18,7 @@ namespace UI.Card
|
|
|
public GLoader m_loaGuide;
|
|
|
public GButton m_btnLeft;
|
|
|
public GButton m_btnRight;
|
|
|
+ public GGraph m_touchLayer;
|
|
|
public Transition m_t0;
|
|
|
public Transition m_t1;
|
|
|
public Transition m_open;
|
|
@@ -79,6 +80,7 @@ namespace UI.Card
|
|
|
m_loaGuide = (GLoader)comp.GetChild("loaGuide");
|
|
|
m_btnLeft = (GButton)comp.GetChild("btnLeft");
|
|
|
m_btnRight = (GButton)comp.GetChild("btnRight");
|
|
|
+ m_touchLayer = (GGraph)comp.GetChild("touchLayer");
|
|
|
m_t0 = comp.GetTransition("t0");
|
|
|
m_t1 = comp.GetTransition("t1");
|
|
|
m_open = comp.GetTransition("open");
|
|
@@ -100,6 +102,7 @@ namespace UI.Card
|
|
|
m_loaGuide = null;
|
|
|
m_btnLeft = null;
|
|
|
m_btnRight = null;
|
|
|
+ m_touchLayer = null;
|
|
|
m_t0 = null;
|
|
|
m_t1 = null;
|
|
|
m_open = null;
|