Exemplo n.º 1
0
 public void Next()
 {
     if (type == CursoContentUI.types.CURSO)
     {
         if (data.goto_id == 0)
         {
             cursoContentUI.Next();
         }
         else
         {
             cursoContentUI.Goto(data.goto_id, data.correct);
         }
     }
     else
     {
         cursoContentUI.Goto(arr[0].goto_id, arr[0].correct);
     }
 }
Exemplo n.º 2
0
    public override void OnUIButtonClicked(UIButton uiButton)
    {
        if (isDone)
        {
            return;
        }
        isDone = true;

        button = (UICursoContentButton)uiButton;
        if (type == CursoContentUI.types.CURSO)
        {
            cursoContentUI.Goto(button.data.goto_id, button.data.correct);
        }
        else
        {
            if (anim != null && data.character_id == 1)
            {
                Reset();
                if (button.data.correct > 0)
                {
                    if (button.data.goto_id == 0)
                    {
                        anim.Play("happy");
                    }
                    else
                    {
                        anim.Play("neutral");
                    }
                    Events.PlaySound("ui", "btn_ok", false);
                }
                else
                {
                    Events.PlaySound("ui", "btn_bad", false);
                    anim.Play("unhappy");
                }
                Invoke("Delayed", 2);
            }
            else
            {
                cursoContentUI.Goto(button.data.goto_id, button.data.correct);
            }
        }
    }