Graphics#kill()

kill() → {PIXI.DisplayObject} Kills a Game Object. A killed Game Object has its alive, exists and visible properties all set to false. It will dispatch the onKilled event. You can listen to events.onKilled for the signal. Note that killing a Game Object is a way for you to quickly recycle it in an object pool,it doesn't destroy the object or free it up from memory. If you don't need this Game Object any more you should call destroy instead. Returns PIXI.DisplayObject - This instance. I

Graphics#bottom

bottom : number The sum of the y and height properties.This is the same as y + height - offsetY. Inherited From Phaser.Component.Bounds#bottom Source code: gameobjects/components/Bounds.js (Line 168)

World#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

Graphics#beginFill()

beginFill(color, alpha) → {PIXI.Graphics} Specifies a simple one-color fill that subsequent calls to other Graphics methods(such as lineTo() or drawCircle()) use when drawing. Parameters Name Type Description color Number the color of the fill alpha Number the alpha of the fill Returns PIXI.Graphics - Inherited From PIXI.Graphics#beginFill Source code: pixi/primitives/Graphics.js (Line 491)

Graphics#angle

angle : number The angle property is the rotation of the Game Object in degrees from its original orientation. Values from 0 to 180 represent clockwise rotation; values from 0 to -180 represent counterclockwise rotation. Values outside this range are added to or subtracted from 360 to obtain a value within the range.For example, the statement player.angle = 450 is the same as player.angle = 90. If you wish to work in radians instead of degrees you can use the property rotation instead.Working

LoaderParser.bitmapFont()

<static> bitmapFont(xml, baseTexture, xSpacing, ySpacing) → {object} Alias for xmlBitmapFont, for backwards compatibility. Parameters Name Type Argument Default Description xml object XML data you want to parse. baseTexture PIXI.BaseTexture The BaseTexture this font uses. xSpacing number <optional> 0 Additional horizontal spacing between the characters. ySpacing number <optional> 0 Additional vertical spacing between the characters. Returns object

Graphics#width

width : number The width of the displayObjectContainer, setting this will actually modify the scale to achieve the value set Inherited From PIXI.DisplayObjectContainer#width Source code: pixi/display/DisplayObjectContainer.js (Line 571)

Button#sendToBack()

sendToBack() → {PIXI.DisplayObject} Sends this Game Object to the bottom of its parents display list.Visually this means it will render below all other children in the same Group. If this Game Object hasn't been added to a custom Group then this method will send it to the bottom of the Game World,because the World is the root Group from which all Game Objects descend. Returns PIXI.DisplayObject - This instance. Inherited From Phaser.Component.BringToTop#sendToBack Source code: gameob

Graphics#blendMode

blendMode : number The blend mode to be applied to the graphic shape. Apply a value of PIXI.blendModes.NORMAL to reset the blend mode. Inherited From PIXI.Graphics#blendMode Default Value PIXI.blendModes.NORMAL; Source code: pixi/primitives/Graphics.js (Line 61)

Easing.Quadratic#Out()

Out(k) → {number} Ease-out. Parameters Name Type Description k number The value to be tweened. Returns number - k* (2-k). Source code: tween/Easing.js (Line 58)