我正在将对象绘制到这样的画布中,
ctx.fillStyle = "black";
ctx.fillRect(player.x, player.y, player.width, player.height);
在我画了很多之后,我想确定是否在画布中的特定坐标处绘制了一些东西,我该如何做到这一点?
我正在将对象绘制到这样的画布中,
ctx.fillStyle = "black";
ctx.fillRect(player.x, player.y, player.width, player.height);
在我画了很多之后,我想确定是否在画布中的特定坐标处绘制了一些东西,我该如何做到这一点?