看老师的视频最后小球就不再跳动了,求思路
个人测试是这样的
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;
}
那时候只有x轴有速度,y轴的速度为零了。但是如何判断当前小球已经到底部了,不再跳起来,我正在考虑