游戏旋转
红色方块可以旋转
旋转组件
在本教程的前面,红色方块可以在游戏区域内移动,但它不能转动或旋转。
为了旋转组件,我们必须改变我们绘制组件的方式。
Canvas 元素唯一可用的旋转方法将旋转整个 Canvas
你在 Canvas 上绘制的任何其他内容也将被旋转,而不仅仅是特定的组件。
这就是为什么我们必须在 update()
方法中做一些更改的原因
首先,我们保存当前 Canvas 上下文对象
ctx.save();
然后我们使用 translate 方法将整个 Canvas 移动到特定组件的中心
ctx.translate(x, y);
然后我们使用 rotate() 方法执行所需的旋转
ctx.rotate(angle);
现在我们准备好将组件绘制到 Canvas 上,但现在我们将使用其中心位置在转换(和旋转)后的 Canvas 上的 0,0 位置绘制它
ctx.fillRect(width / -2, height / -2, width, height);
完成后,我们必须使用 restore 方法将上下文对象恢复到其保存的位置
ctx.restore();
组件是唯一旋转的部分
组件构造函数
component
构造函数有一个名为 angle
的新属性,它是一个表示组件角度的弧度数。
component
构造函数的 update
方法是我们绘制组件的地方,在这里你可以看到允许组件旋转的更改
示例
function component(width, height, color, x, y) {
this.width = width;
this.height = height;
this.angle = 0;
this.x = x;
this.y = y;
this.update = function() {
ctx = myGameArea.context;
ctx.save();
ctx.translate(this.x, this.y);
ctx.rotate(this.angle);
ctx.fillStyle = color;
ctx.fillRect(this.width / -2, this.height / -2, this.width, this.height);
ctx.restore();
}
}
function updateGameArea() {
myGameArea.clear();
myGamePiece.angle += 1 * Math.PI / 180;
myGamePiece.update();
}
自己尝试 »