0

ゲームで敵のリスポーン機能に取り組んでいますが、画面上を移動するエミーがまだ 1 つしかないため、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 に答える