Example #1
0
        private void MpBeeDropBall(double dropTo)
        {
            stbBeeMove.Pause();
            ctrlBeeOB.BeeDropBall(dropTo);
            ctrlBeeOB.BeeStrong();
            animationTick = AppEnum.AnimationTicker.dropBall;

            TimeTick(2);
            //this.BeeBeginTired();
        }
Example #2
0
        private void MpBeeDropBall(bool tired)
        {
            double height = 0;
            if (tired == true)
                height = Commons.GetHeightToDrop(currentLevel) / 2;
            else
                height = Commons.GetHeightToDrop(currentLevel);

            this.stbBeeMove.Pause();
            ctrlBeeOB.BeeDropBall(height);
            this.beeDropingBall = true;
            this.animationTick = AppEnum.AnimationTicker.dropBall;
            this.TimerTick(1);
        }
Example #3
0
 private void BeeEndTired()
 {
     animationTick = AppEnum.AnimationTicker.endTired;
     TimerTick(2);
 }
Example #4
0
 private void BeeBeginTired()
 {
     animationTick = AppEnum.AnimationTicker.beginTired;
     TimerTick(AppConstant.Storyboard_BeeMove_TimeSecond);
 }
Example #5
0
 private void BeeNotTired()
 {
     animationTick = AppEnum.AnimationTicker.normal;
 }