Particles.Arcade.Emitter#getByName()

getByName(name) → {any} Searches the Group for the first instance of a child with the nameproperty matching the given argument. Should more than one child havethe same name only the first instance is returned. Parameters Name Type Description name string The name to search for. Returns any - The first child with a matching name, or null if none were found. Inherited From Phaser.Group#getByName Source code: core/Group.js (Line 1042)

Tween#Tween

new Tween(target, game, manager) A Tween allows you to alter one or more properties of a target object over a defined period of time.This can be used for things such as alpha fading Sprites, scaling them or motion.Use Tween.to or Tween.from to set-up the tween values. You can create multiple tweens on the same objectby calling Tween.to multiple times on the same Tween. Additional tweens specified in this way become "child" tweens andare played through in sequence. You can use Tween.timeScale

TimerEvent#repeatCount

repeatCount : number If this TimerEvent repeats it will do so this many times. Source code: time/TimerEvent.js (Line 50)

Particles.Arcade.Emitter#moveUp()

moveUp(child) → {any} Moves the given child up one place in this group unless it's already at the top. Parameters Name Type Description child any The child to move up in the group. Returns any - The child that was moved. Inherited From Phaser.Group#moveUp Source code: core/Group.js (Line 945)

TileSprite#inCamera

[readonly] inCamera : boolean Checks if the Game Objects bounds intersect with the Game Camera bounds.Returns true if they do, otherwise false if fully outside of the Cameras bounds. Inherited From Phaser.Component.AutoCull#inCamera Source code: gameobjects/components/AutoCull.js (Line 37)

Sprite#key

key : string | Phaser.RenderTexture | Phaser.BitmapData | Phaser.Video | PIXI.Texture The key of the image or texture used by this Game Object during rendering.If it is a string it's the string used to retrieve the texture from the Phaser Image Cache.It can also be an instance of a RenderTexture, BitmapData, Video or PIXI.Texture.If a Game Object is created without a key it is automatically assigned the key __default which is a 32x32 transparent PNG stored within the Cache.If a Game Object is

BaseTexture#hasLoaded

[readonly] hasLoaded : boolean [read-only] Set to true once the base texture has loaded Source code: pixi/textures/BaseTexture.js (Line 51)

Button#data

data : Object An empty Object that belongs to this Game Object.This value isn't ever used internally by Phaser, but may be used by your own code, orby Phaser Plugins, to store data that needs to be associated with the Game Object,without polluting the Game Object directly. Inherited From Phaser.Component.Core#data Default Value {} Source code: gameobjects/components/Core.js (Line 160)

WebGLBlendModeManager#setBlendMode()

setBlendMode(blendMode) Sets-up the given blendMode from WebGL's point of view. Parameters Name Type Description blendMode Number the blendMode, should be a Pixi const, such as PIXI.BlendModes.ADD Source code: pixi/renderers/webgl/utils/WebGLBlendModeManager.js (Line 32)

Particles.Arcade.Emitter#z

[readonly] z : integer The z-depth value of this object within its parent container/Group - the World is a Group as well.This value must be unique for each child in a Group. Inherited From Phaser.Group#z Source code: core/Group.js (Line 57)