showCard()

Found in:

private void showCard(){
    yield return new WaitForSecondsRealtime(.5f);
    if(currentSpell != null){
      card.populateRecipe(currentSpell);
      card.gameObject.SetActive(true);
      cardholder.gameObject.SetActive(true);
      cardholder.AddRecipes(currentSpell);
      currentSpell = null;
    }
  }


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *