Jump to content

Cannot read property add of undefined Phaser


error404
 Share

Recommended Posts

I am making a 2d shooter game and i am trying to add a collider between the bullets and the enemy so that the bullet doesn't go straight through the enemy but i am getting an error I am new to phaser btw

here is the code for my projectile class. The class is instantiated whenever the player clicks

 

class Projectile {
    constructor(scenexy) {
 
        this.scene = scene;
        this.game = scene.game
        this.x = x;
        this.y = y;
        this.projectile_sprite
            = scene.physics.add.sprite(xy'bullet')
        this.projectile_sprite.setScale(0.02);
 
        let yCur = this.game.input.mousePointer.y;
        let xCur = this.game.input.mousePointer.x;
        
       
        let rad = Phaser.Math.Angle.Between(this.x,this.y,xCur,yCur);
        this.scene.physics.moveTo(this.projectile_sprite,xCur,yCur,1000)
        
        function bulletCollide(projectile){
            projectile.destroy();
 
        }
        
        this.physics.add.collider(player.player_sprite,this.projectile_sprite,bulletCollide(this.projectile_sprite));   
    
        
    
    
}
}
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...