Particles.Arcade.Emitter#setProperty()

setProperty(child, key, value, operation, force) → {boolean} Sets a property to the given value on the child. The operation parameter controls how the value is set. The operations are: 0: set the existing value to the given value; if force is true a new property will be created if needed 1: will add the given value to the value already present. 2: will subtract the given value from the value already present. 3: will multiply the value already present by the given value. 4: will divide the val

Particles.Arcade.Emitter#setChildIndex()

setChildIndex(child, index) Changes the position of an existing child in the display object container Parameters Name Type Description child DisplayObject The child DisplayObject instance for which you want to change the index number index Number The resulting index number for the child display object Inherited From PIXI.DisplayObjectContainer#setChildIndex Source code: pixi/display/DisplayObjectContainer.js (Line 132)

Particles.Arcade.Emitter#setAlpha()

setAlpha(min, max, rate, ease, yoyo) → {Phaser.Particles.Arcade.Emitter} A more compact way of setting the alpha constraints of the particles.The rate parameter, if set to a value above zero, lets you set the speed at which the Particle change in alpha from min to max.If rate is zero, which is the default, the particle won't change alpha - instead it will pick a random alpha between min and max on emit. Parameters Name Type Argument Default Description min number <optional> 1 The

Particles.Arcade.Emitter#setAllChildren()

setAllChildren(key, value, checkAlive, checkVisible, operation, force) Quickly set the same property across all children of this group, and any child Groups, to a new value. If this group contains other Groups then the same property is set across their children as well, iterating down until it reaches the bottom.Unlike with setAll the property is NOT set on child Groups itself. The operation parameter controls how the new value is assigned to the property, from simple replacement to addition

Particles.Arcade.Emitter#setAll()

setAll(key, value, checkAlive, checkVisible, operation, force) Quickly set the same property across all children of this group to a new value. This call doesn't descend down children, so if you have a Group inside of this group, the property will be set on the group but not its children.If you need that ability please see Group.setAllChildren. The operation parameter controls how the new value is assigned to the property, from simple replacement to addition and multiplication. Parameters Nam

Particles.Arcade.Emitter#set()

set(child, key, value, checkAlive, checkVisible, operation, force) → {boolean} Quickly set a property on a single child of this group to a new value. The operation parameter controls how the new value is assigned to the property, from simple replacement to addition and multiplication. Parameters Name Type Argument Default Description child Phaser.Sprite The child to set the property on. key string The property, as a string, to be set. For example: 'body.velocity.x' value any

Particles.Arcade.Emitter#sendToBack()

sendToBack(child) → {any} Sends the given child to the bottom of this group so it renders below all other children. Parameters Name Type Description child any The child to send to the bottom of this group. Returns any - The child that was moved. Inherited From Phaser.Group#sendToBack Source code: core/Group.js (Line 926)

Particles.Arcade.Emitter#scaleData

scaleData :array An array of the calculated scale easing data applied to particles with scaleRates > 0. Source code: particles/arcade/Emitter.js (Line 80)

Particles.Arcade.Emitter#rotation

rotation : number The angle of rotation of the group container, in radians. This will adjust the group container itself by modifying its rotation.This will have no impact on the rotation value of its children, but it will update their worldTransform and on-screen position. Inherited From Phaser.Group#rotation Source code: core/Group.js (Line 2987)

Particles.Arcade.Emitter#right

[readonly] right : number Gets the right position of the Emitter. Source code: particles/arcade/Emitter.js (Line 964)