0

在游戏中处理敌人重生功能但是我的 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();
        }
    }; 
4

1 回答 1

1

在再次添加之前,您要在循环的每次迭代中清除怪物。

于 2013-04-24T22:09:08.307 回答