Esempio n. 1
0
 public void additionalChoicesPreview(int choiceNr)
 {
     if (cardMoveEnabled == true)
     {
         EventScript es = spawnedCard.GetComponent <EventScript> ();
         if (es != null)
         {
             es.PreviewAddtionalChoices(choiceNr);
         }
         else
         {
             Debug.LogError("Event script missing on card");
         }
     }
 }