示例#1
0
 public void ResetInfoCards()
 {
     if (this.InfoBoxCards != null)
     {
         OnInfoBoxCardsEmpty?.Invoke();
     }
     SetInfoBoxCards(null);
 }
示例#2
0
 public void NextCardForInfoBox()
 {
     if (this.InfoBoxCards != null && InfoBoxCards.Count > 0 && cardCount < InfoBoxCards.Count)
     {
         NextTextAnimationInfoBox(InfoBoxCards[cardCount++]);
     }
     else
     {
         if (this.InfoBoxCards != null)
         {
             OnInfoBoxCardsEmpty?.Invoke();
         }
         SetInfoBoxCards(null);
     }
 }