Ejemplo n.º 1
0
    public void Response(UnitychanResponseType type)
    {
        if (anim.IsInTransition(0))
        {
            return;
        }

        anim.SetBool(type.ToString(), true);
    }
Ejemplo n.º 2
0
 private void MakeUnitychan(UnitychanResponseType type)
 {
     unitychan.GetComponent <NotificationUnitychan>().Response(type);
 }
Ejemplo n.º 3
0
 public void ShowNotification(string noticeText, UnitychanResponseType type)
 {
     GenerateNotificationPanel(noticeText);
     MakeUnitychan(type);
 }