弾丸を表すスプライトがあり、その基本的な実装は次のとおりです。
function Bullet(x, y, rotation) {
this.x = x;
this.y = y;
this.direction = rotation;
this.speed = 5;
}
Bullet.prototype.update = function() {
// Move the bullet forward
this.x = Math.sin(this.rotation) * this.speed;
this.x = Math.cos(this.rotation) * this.speed;
}
私がここでやろうとしているのは、弾丸が向いている方向に、そしてその速度に対して相対的に弾丸を前方に動かすことです。ただし、update()
メソッドthis.x
を呼び出すときthis.x
はNaN
。
スプライトと情報が与えられた場合x
、スプライトを直面している方向に移動させる正しい方法は何ですか?y
rotation