在游戏中处理敌人的重生功能但是我的for循环似乎没有效果,因为我仍然只有一个ememy在屏幕上移动,谢谢
Monster.prototype.draw = function () {
for (var i=0; i <5; i++){
clearMonster();
monsterCon.drawImage(sprite, this.locationX, this.locationY, this.width, this.height, this.destinationX, this.destinationY, this.width, this.height);
this.checkKeys();
}
};
答案 0 :(得分:1)
你在循环的每次迭代中清除你的怪物,然后再添加它。