TilingSprite#exists

exists : boolean Controls if this Sprite is processed by the core Phaser game loops and Group loops. Inherited From PIXI.Sprite#exists Default Value true Source code: pixi/display/Sprite.js (Line 103)

TilingSprite#generateTilingTexture()

generateTilingTexture(forcePowerOfTwo, renderSession) Parameters Name Type Description forcePowerOfTwo Boolean Whether we want to force the texture to be a power of two renderSession RenderSession - Source code: pixi/extras/TilingSprite.js (Line 332)

TilingSprite#getBounds()

getBounds() → {Rectangle} Returns the framing rectangle of the sprite as a PIXI.Rectangle object Returns Rectangle - the framing rectangle Source code: pixi/extras/TilingSprite.js (Line 417)

TilingSprite#contains()

contains(child) → {Boolean} Determines whether the specified display object is a child of the DisplayObjectContainer instance or the instance itself. Parameters Name Type Description child DisplayObject - Returns Boolean - Inherited From PIXI.DisplayObjectContainer#contains Source code: pixi/display/DisplayObjectContainer.js (Line 449)

TilingSprite#children

[readonly] children : Array.<DisplayObject> [read-only] The array of children of this container. Type Array.<DisplayObject> Inherited From PIXI.DisplayObjectContainer#children Source code: pixi/display/DisplayObjectContainer.js (Line 17)

TilingSprite#blendMode

blendMode : number The blend mode to be applied to the sprite Default Value PIXI.blendModes.NORMAL; Source code: pixi/extras/TilingSprite.js (Line 86)

TilingSprite#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)

TilingSprite#canvasBuffer

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

TilingSprite#addChildAt()

addChildAt(child, index) → {DisplayObject} Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown Parameters Name Type Description child DisplayObject The child to add index Number The index to place the child in Returns DisplayObject - The child that was added. Inherited From PIXI.DisplayObjectContainer#addChildAt Source code: pixi/display/DisplayObjectContainer.js (Line 55)

TilingSprite#addChild()

addChild(child) → {DisplayObject} Adds a child to the container. Parameters Name Type Description child DisplayObject The DisplayObject to add to the container Returns DisplayObject - The child that was added. Inherited From PIXI.DisplayObjectContainer#addChild Source code: pixi/display/DisplayObjectContainer.js (Line 42)