这是我的 javascript 游戏的主题 -
当球接触到偏移到 X、Y 桨时,它应该停止移动。我认为当前轴应该为此而闻名,但不知何故我找不到任何方法。请帮我让它更真实。
这是我的绘图功能-
function draw() {
ctx.clearRect(0,0,300,300);
ctx.rect(mouseX-40,mouseY-20,40,20,true);
ctx.fillStyle = 'black';
ctx.fill();
ctx.beginPath();
ctx.arc(x,y,10,0,2*Math.PI,true);
ctx.closePath();
ctx.fill();
x+=dx;
y+=dy;
bounce();
}
我放在这里的条件-
function bounce(){
if(x+dx>300||x+dx<0)
dx=-dx;
if(y+dy>300||y+dy<0)
dy=-dy;
}