2
if (player1Ready) {
ctx.save();
ctx.rotate(player1.rotation);
ctx.drawImage(player1Image, player1.x, player1.y,80,80);
ctx.restore(); }
我想根據玩家向左或向右按下多少來在畫布內旋轉單個圖像。無法旋轉畫布內的圖像
我不明白這是如何工作的,任何人都可以幫忙嗎?