我有一个代表子弹的精灵,它的基本实现如下:
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
信息,使精灵朝着它所面对的方向移动的正确方法是什么?