コード例 #1
0
        private void Move(IShowable showableCard, Vector2 positionToMove)
        {
            ShowCardView showCard = cardShowerManager.GetThisShowCard(showableCard);

            showCard.Clean();
            showCard.MoveAnimation(positionToMove);
        }
コード例 #2
0
        public void AddShowableAndShow(IShowable showableCard)
        {
            ShowCardView showCard = cardShowerManager.GetVoidShowCard();

            showCard.SetShowableCard(showableCard);
            showCard.ShowAnimation(showableCard.ShowPosition);
        }