Example #1
0
 // Update is called once per frame
 void Update()
 {
     if (!cardController.Animating() && cardController.state == CardController.State.Dismiss)
     {
         UpdateStory();
         cardSounds.NewStoryCard();
         cardController.SetState(CardController.State.Image);
         return;
     }
 }