在游戏中处理敌人重生功能但是我的 for 循环似乎没有效果,因为我仍然只有一个敌人在屏幕上移动,谢谢
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();
}
};