Пример #1
0
 // Draws a hand of size InitSize
 public void DrawStartingHand()
 {
     if (InitSize > MaxSize)
     {
         Debug.LogWarning("Init hand size too large. Drawing to max hand size.");
         InitSize = MaxSize;
     }
     m_pHand = deck.DrawCards(InitSize);
     foreach (Card c in m_pHand)
     {
         // Parents the card to the hand ui component
         c.transform.SetParent(handUI.transform);
     }
     handUI.UpdateScaling();
 }