为敌人重生的循环

时间:2013-04-24 22:00:14

标签: javascript html5 html5-canvas

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

1 个答案:

答案 0 :(得分:1)

你在循环的每次迭代中清除你的怪物,然后再添加它。