|
@@ -8,6 +8,7 @@ namespace UI.LuckyBox
|
|
{
|
|
{
|
|
public GComponent target;
|
|
public GComponent target;
|
|
public UI_Component2 m_comIcon;
|
|
public UI_Component2 m_comIcon;
|
|
|
|
+ public GGraph m_waitClick_eff;
|
|
public Transition m_t0;
|
|
public Transition m_t0;
|
|
public Transition m_t1;
|
|
public Transition m_t1;
|
|
public Transition m_t2;
|
|
public Transition m_t2;
|
|
@@ -59,6 +60,7 @@ namespace UI.LuckyBox
|
|
private void Init(GComponent comp)
|
|
private void Init(GComponent comp)
|
|
{
|
|
{
|
|
m_comIcon = (UI_Component2)UI_Component2.Create(comp.GetChild("comIcon"));
|
|
m_comIcon = (UI_Component2)UI_Component2.Create(comp.GetChild("comIcon"));
|
|
|
|
+ m_waitClick_eff = (GGraph)comp.GetChild("waitClick_eff");
|
|
m_t0 = comp.GetTransition("t0");
|
|
m_t0 = comp.GetTransition("t0");
|
|
m_t1 = comp.GetTransition("t1");
|
|
m_t1 = comp.GetTransition("t1");
|
|
m_t2 = comp.GetTransition("t2");
|
|
m_t2 = comp.GetTransition("t2");
|
|
@@ -67,6 +69,7 @@ namespace UI.LuckyBox
|
|
{
|
|
{
|
|
m_comIcon.Dispose();
|
|
m_comIcon.Dispose();
|
|
m_comIcon = null;
|
|
m_comIcon = null;
|
|
|
|
+ m_waitClick_eff = null;
|
|
m_t0 = null;
|
|
m_t0 = null;
|
|
m_t1 = null;
|
|
m_t1 = null;
|
|
m_t2 = null;
|
|
m_t2 = null;
|