RetroFont#offsetX

[readonly] offsetX : number If the font set doesn't start at the top left of the given image, specify the X coordinate offset here. Source code: gameobjects/RetroFont.js (Line 66)

Component.Angle#Angle

new Angle() The Angle Component provides access to an angle property; the rotation of a Game Object in degrees. Source code: gameobjects/components/Angle.js (Line 12)

Image#updateCrop()

updateCrop() If you have set a crop rectangle on this Game Object via crop and since modified the cropRect property,or the rectangle it references, then you need to update the crop frame by calling this method. Inherited From Phaser.Component.Crop#updateCrop Source code: gameobjects/components/Crop.js (Line 86)

Text#anchor

anchor :Point The anchor sets the origin point of the texture.The default is 0,0 this means the texture's origin is the top leftSetting than anchor to 0.5,0.5 means the textures origin is centeredSetting the anchor to 1,1 would mean the textures origin points will be the bottom right corner Inherited From PIXI.Sprite#anchor Source code: pixi/display/Sprite.js (Line 17)

Loader#path

path : string The value of path, if set, is placed before any relative file path given. For example: load.path = "images/sprites/"; load.image("ball", "ball.png"); load.image("tree", "level1/oaktree.png"); load.image("boom", "http://server.com/explode.png"); Would load the ball file from images/sprites/ball.png and the tree fromimages/sprites/level1/oaktree.png but the file boom would load from the URLgiven as it's an absolute URL. Please note that the path is added before the filename but af

Keyboard#event

event : Object The most recent DOM event from keydown or keyup. This is updated every time a new key is pressed or released. Source code: input/Keyboard.js (Line 38)

LinkedList#last

last : Object Last element in the list. Source code: utils/LinkedList.js (Line 46)

RetroFont#getImage()

getImage() → {Image} Will return a HTML Image of the texture Returns Image - Inherited From PIXI.RenderTexture#getImage Source code: pixi/textures/RenderTexture.js (Line 296)

Particle#cropRect

cropRect : Phaser.Rectangle The Rectangle used to crop the texture this Game Object uses.Set this property via crop.If you modify this property directly you must call updateCrop in order to have the change take effect. Inherited From Phaser.Component.Crop#cropRect Source code: gameobjects/components/Crop.js (Line 24)

TilingSprite#canvasBuffer

canvasBuffer :PIXICanvasBuffer The CanvasBuffer object that the tiled texture is drawn to. Source code: pixi/extras/TilingSprite.js (Line 95)