RetroFont#isTiling

isTiling : boolean Is this a tiling texture? As used by the likes of a TilingSprite. Inherited From PIXI.Texture#isTiling Source code: pixi/textures/Texture.js (Line 79)

RetroFont#height

height : number The height of the render texture Inherited From PIXI.RenderTexture#height Source code: pixi/textures/RenderTexture.js (Line 45)

RetroFont#getLongestLine()

getLongestLine() → {number} Works out the longest line of text in _text and returns its length Returns number - The length of the longest line of text. Source code: gameobjects/RetroFont.js (Line 459)

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)

RetroFont#getCanvas()

getCanvas() → {HTMLCanvasElement} Creates a Canvas element, renders this RenderTexture to it and then returns it. Returns HTMLCanvasElement - A Canvas element with the texture rendered on. Inherited From PIXI.RenderTexture#getCanvas Source code: pixi/textures/RenderTexture.js (Line 320)

RetroFont#getBase64()

getBase64() → {String} Will return a base64 encoded string of this texture. It works by calling RenderTexture.getCanvas and then running toDataURL on that. Returns String - A base64 encoded string of the texture. Inherited From PIXI.RenderTexture#getBase64 Source code: pixi/textures/RenderTexture.js (Line 309)

RetroFont#game

game : Phaser.Game A reference to the currently running game. Inherited From Phaser.RenderTexture#game Source code: gameobjects/RenderTexture.js (Line 30)

RetroFont#frameData

frameData : Phaser.FrameData The FrameData representing this Retro Font. Source code: gameobjects/RetroFont.js (Line 130)

RetroFont#frame

frame :Rectangle The framing rectangle of the render texture Inherited From PIXI.RenderTexture#frame Source code: pixi/textures/RenderTexture.js (Line 61)

RetroFont#fontSet

fontSet :Image A reference to the image stored in the Game.Cache that contains the font. Source code: gameobjects/RetroFont.js (Line 113)