コード例 #1
0
 public void SetBowLevel(int level, bool instantly)
 {
     if (instantly)
     {
         thisBowLevelPane.UpdateLevel(level);
     }
     else
     {
         thisBowLevelPane.StartUpdateLevelProcess(level);
     }
 }
コード例 #2
0
        public void SetAttributeLevel(
            int index,
            int level,
            bool instantly
            )
        {
            IBowStarsPane pane = thisBowAttributeLevelPanes[index];

            if (instantly)
            {
                pane.UpdateLevel(level);
            }
            else
            {
                pane.StartUpdateLevelProcess(level);
            }
        }
コード例 #3
0
        void StartStarsUpdateProcess()
        {
            IBowStarsPane thisPane = bowStarsPaneAdaptor.GetBowStarsPane();

            thisPane.StartUpdateLevelProcess(targetLevel);
        }