Javascript 为什么重叠不起作用?

Javascript 为什么重叠不起作用?,javascript,phaser-framework,Javascript,Phaser Framework,我在phaser.js上创建了一个小场景 当敌人向我开枪时,我必须死,但这不起作用 而且,当我射杀敌人时,他们应该会死。我在代码中编写了一个重叠函数,但它不起作用 以下是情况的屏幕截图: 为什么会这样,你能帮我吗 var playState = { create: function() { this.enemiesArray = []; game.physics.startSystem(Phaser.Physics.ARCADE); this.spacebar;

我在phaser.js上创建了一个小场景

当敌人向我开枪时,我必须死,但这不起作用

而且,当我射杀敌人时,他们应该会死。我在代码中编写了一个重叠函数,但它不起作用

以下是情况的屏幕截图:

为什么会这样,你能帮我吗

var playState = {

create: function()
{
    this.enemiesArray = [];

    game.physics.startSystem(Phaser.Physics.ARCADE);

    this.spacebar;
    this.spacebar = game.input.keyboard.addKey(Phaser.Keyboard.SPACEBAR);
    this.escapeKey = game.input.keyboard.addKey(Phaser.Keyboard.ESC);

    this.ship = game.add.sprite(game.width / 2, game.height / 2 + 300, 'ship');
    this.ship.anchor.setTo(0.5, 0.5);
    this.ship.scale.setTo(0.4, 0.4);
    this.cursor = game.input.keyboard.createCursorKeys();

    this.enemy = game.add.sprite(game.width / 2, game.height / 2 - 300, 'alien');
    this.enemy.anchor.setTo(.5,.5);
    this.enemy.scale.setTo(0.4,0.4);
    game.time.events.loop(1000, this.spawnEnemy, this);
    game.time.events.loop(750, this.spawnEnemyBullet, this);

    game.physics.arcade.enable(this.ship, this.enemy, this.bullet, this.enemyBullet);

},

update: function()
{

    if(this.cursor.left.isDown)
    {
        this.ship.x -= 7;
    }

    for(var a = 0; a < this.enemiesArray.length; a++)
    {
        this.enemiesArray[a].x -= 2;
    }

    if(this.escapeKey.isDown)
    {
        game.state.start('menu');
    }

    if(this.cursor.right.isDown)
    {
        this.ship.x += 7;
    }

    if(this.spacebar.isDown)
    {
        this.bullet = game.add.sprite(this.ship.x, this.ship.y, 'bullet');
        this.bullet.anchor.setTo(0.5,0.5);
        this.bullet.scale.setTo(0.2,0.2);
        game.physics.arcade.enable(this.bullet);
        this.bullet.body.velocity.y = -600;

        if(!this.bullet.inWorld)
        {
            this.bullet.kill();
        }
    }
    game.physics.arcade.overlap(this.enemyBullet,this.ship,this.gameOverOpenMenuScreen,null,this);
    game.physics.arcade.overlap(this.bullet,this.enemy,this.killenemy,null,this);
},

killenemy: function()
{
    this.enemy.kill();
},

gameOverOpenMenuScreen: function()
{
    game.state.start('menu');
},

spawnEnemy: function()
{
    this.enemy = game.add.sprite(Math.random()*game.width, game.height / 2 - 300, 'alien');
    this.enemy.anchor.setTo(.5,.5);
    this.enemy.scale.setTo(0.4,0.4);

    this.enemiesArray.push(this.enemy);
},

spawnEnemyBullet: function()
{
    for(var i = 0; i < this.enemiesArray.length; i++)
    {
        this.enemyBullet = game.add.sprite(this.enemiesArray[i].x, this.enemiesArray[i].y, 'bullet');
        this.enemyBullet.anchor.setTo(0.5,0.5);
        this.enemyBullet.scale.setTo(0.2,0.2);
        this.enemyBullet.angle = 180;
        game.physics.arcade.enable(this.enemyBullet);
        this.enemyBullet.body.velocity.y = 600;
    }
}

}

您可以使用组来创建项目符号,但我认为您应该首先纠正这一点:

game.physics.arcade.enable([this.ship, this.enemy]);
将此添加到您的代码中:

create : function() {
   ...
   //After creating the sprites
   this.bulletPlayerTime = 0;

   this.bulletsPlayer = game.add.group();
   this.bulletsPlayer.enableBody = true;
   this.bulletsPlayer.physicsBodyType = Phaser.Physics.ARCADE;

   for (var i = 0; i < 20; i++)
   {
       var b = this.bulletsPlayer.create(0, 0, 'bullet');
       b.name = 'bullet' + i;
       b.exists = false;
       b.visible = false;
       b.checkWorldBounds = true;
       b.events.onOutOfBounds.add(function(bullet) { bullet.kill(); }, this);
   }
   ...
}

update : function() {

  ...
  if (this.spacebar.isDown) {
     this.firePlayer();
  }
  ...
}

firePlayer : function() {

   if (game.time.now > this.bulletPlayerTime) {
      bullet = bulletsPlayer.getFirstExists(false);

      if (bullet) {
        bullet.reset(this.ship.x + 6, this.ship.y - 8);
        bullet.body.velocity.y = -300;
        this.bulletPlayerTime = game.time.now + 300;
      }
   }

}
现在,你必须做同样的功能,但这次与敌人


您可以看到更多信息

您应该首先将所有项目符号归为一组:

const bulletsGroup = this.add.group();
请注意,这是裁判到现场的情况

然后将每个项目符号添加到组中:

bulletsGroup.add(<your game object>);
game.physics.arcade.overlap(this.ship, bulletGroup, () => console.log('boom!'));