Jump to content

Fire Weapons with a Group


willdta
 Share

Recommended Posts

So I have a group of AI's and I'm trying to have them auto firing. 

I'm trying to use the tracksprite method but I cannot get it to work with groups.

Is there a workaround or method that you can call to track groups?

// Create
enemies = game.add.group()
enemies.create(150,500,'hilary2')
enemies.create(150,700,'hilary2')
 
enemyWeapon = game.add.weapon(30, 'shuriken')
 
// Weapon Methods
enemyWeapon.bulletKillType = Phaser.Weapon.KILL_WORLD_BOUNDS
enemyWeapon.bulletSpeed = 200
enemyWeapon.fireRate = 1200
enemyWeapon.autofire = true
enemyWeapon.trackSprite(enemies, 30, 30, true)
Link to comment
Share on other sites

  • 2 years later...
 Share

  • Recently Browsing   0 members

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