Particles.Arcade.Emitter#particleBringToTop

particleBringToTop : boolean If this is true then when the Particle is emitted it will be bought to the top of the Emitters display list. Source code: particles/arcade/Emitter.js (Line 199)

Particles.Arcade.Emitter#particleAnchor

particleAnchor : Phaser.Point When a particle is created its anchor will be set to match this Point object (defaults to x/y: 0.5 to aid in rotation) Source code: particles/arcade/Emitter.js (Line 161)

Particles.Arcade.Emitter#onDestroy

onDestroy : Phaser.Signal This signal is dispatched when the group is destroyed. Inherited From Phaser.Group#onDestroy Source code: core/Group.js (Line 249)

Particles.Arcade.Emitter#onChildInputUp

onChildInputUp : Phaser.Signal This Signal is dispatched whenever a child of this Group emits an onInputUp signal as a resultof having been interacted with by a Pointer. You can bind functions to this Signal instead of toevery child Sprite. This Signal is sent 3 arguments: A reference to the Sprite that triggered the signal,a reference to the Pointer that caused it, and a boolean value isOver that tells you if the Pointeris still over the Sprite or not. Inherited From Phaser.Group#onChildIn

Particles.Arcade.Emitter#onChildInputOver

onChildInputOver : Phaser.Signal This Signal is dispatched whenever a child of this Group emits an onInputOver signal as a resultof having been interacted with by a Pointer. You can bind functions to this Signal instead of toevery child Sprite. This Signal is sent 2 arguments: A reference to the Sprite that triggered the signal, anda reference to the Pointer that caused it. Inherited From Phaser.Group#onChildInputOver Source code: core/Group.js (Line 186)

Particles.Arcade.Emitter#onChildInputOut

onChildInputOut : Phaser.Signal This Signal is dispatched whenever a child of this Group emits an onInputOut signal as a resultof having been interacted with by a Pointer. You can bind functions to this Signal instead of toevery child Sprite. This Signal is sent 2 arguments: A reference to the Sprite that triggered the signal, anda reference to the Pointer that caused it. Inherited From Phaser.Group#onChildInputOut Source code: core/Group.js (Line 198)

Particles.Arcade.Emitter#onChildInputDown

onChildInputDown : Phaser.Signal This Signal is dispatched whenever a child of this Group emits an onInputDown signal as a resultof having been interacted with by a Pointer. You can bind functions to this Signal instead of toevery child Sprite. This Signal is sent 2 arguments: A reference to the Sprite that triggered the signal, anda reference to the Pointer that caused it. Inherited From Phaser.Group#onChildInputDown Source code: core/Group.js (Line 161)

Particles.Arcade.Emitter#on

on : boolean Determines whether the emitter is currently emitting particles. It is totally safe to directly toggle this. Source code: particles/arcade/Emitter.js (Line 155)

Particles.Arcade.Emitter#next()

next() → {any} Advances the group cursor to the next (higher) object in the group. If the cursor is at the end of the group (top child) it is moved the start of the group (bottom child). Returns any - The child the cursor now points to. Inherited From Phaser.Group#next Source code: core/Group.js (Line 833)

Particles.Arcade.Emitter#name

name : string A handy string name for this emitter. Can be set to anything. Source code: particles/arcade/Emitter.js (Line 33)