[Solved] Issue with creating a pool of disabled objects (body is enabled but shouldn't)

enable must be in PhysicsGroupConfig, e.g.,

class BulletGroup extends Phaser.Physics.Arcade.Group
{
  constructor(settings) {
    super(settings.world, settings.scene, { enable: false });
    // …
  }
}
1 Like