问答详情
源自:5-8 综合介绍

如何让小球不跳

看老师的视频最后小球就不再跳动了,求思路

提问者:Lunber 2015-01-06 20:18

个回答

  • 远丶扬
    2015-03-18 13:27:15

    个人测试是这样的  

    if(ball.y  > cxt.canvas.height- ball.r){

                        ball.y = cxt.canvas.height - ball.r

                       // ball.vy = -ball.vy * Math.random();

                        ball.vy = -ball.vy * 0.5;

                        //ball.g = 0;

                    }else if(ball.y  == cxt.canvas.height- ball.r){

                        ball.y = cxt.canvas.height - ball.r;

                        ball.vy = 0;

                    }


  • 远丶扬
    2015-03-18 13:21:21

    那时候只有x轴有速度,y轴的速度为零了。但是如何判断当前小球已经到底部了,不再跳起来,我正在考虑