TilemapLayer#update()

update() Override this method in your own custom objects to handle any update requirements.It is called immediately after preUpdate and before postUpdate.Remember if this Game Object has any children you should call update on those too. Inherited From Phaser.Component.Core#update Source code: gameobjects/components/Core.js (Line 328)

TilemapLayer#transformCallbackContext

transformCallbackContext : Object The context under which transformCallback is called. Inherited From Phaser.Component.ScaleMinMax#transformCallbackContext Source code: gameobjects/components/ScaleMinMax.js (Line 26)

TilemapLayer#transformCallback

transformCallback : Function The callback that will apply any scale limiting to the worldTransform. Inherited From Phaser.Component.ScaleMinMax#transformCallback Source code: gameobjects/components/ScaleMinMax.js (Line 20)

TilemapLayer#top

top : number The y coordinate of the Game Object.This is the same as y - offsetY. Inherited From Phaser.Component.Bounds#top Source code: gameobjects/components/Bounds.js (Line 146)

TilemapLayer#tintedTexture

tintedTexture :Canvas A canvas that contains the tinted version of the Sprite (in Canvas mode, WebGL doesn't populate this) Inherited From PIXI.Sprite#tintedTexture Default Value null Source code: pixi/display/Sprite.js (Line 73)

TilemapLayer#tint

tint : number The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect. Inherited From PIXI.Sprite#tint Default Value 0xFFFFFF Source code: pixi/display/Sprite.js (Line 54)

TilemapLayer#TilemapLayer

new TilemapLayer(game, tilemap, index, width, height) A TilemapLayer is a Phaser.Image/Sprite that renders a specific TileLayer of a Tilemap. Since a TilemapLayer is a Sprite it can be moved around the display, added to other groups or display objects, etc. By default TilemapLayers have fixedToCamera set to true. Changing this will break Camera follow and scrolling behavior. Parameters Name Type Description game Phaser.Game Game reference to the currently running game. tilemap Phaser.Tile

TilemapLayer#texture

texture : PIXI.Texture The texture that the sprite is using Inherited From PIXI.Sprite#texture Source code: pixi/display/Sprite.js (Line 28)

TilemapLayer#swapChildren()

swapChildren(child, child2) Swaps the position of 2 Display Objects within this container. Parameters Name Type Description child DisplayObject - child2 DisplayObject - Inherited From PIXI.DisplayObjectContainer#swapChildren Source code: pixi/display/DisplayObjectContainer.js (Line 85)

TilemapLayer#smoothed

smoothed : boolean Enable or disable texture smoothing for this Game Object. It only takes effect if the Game Object is using an image based texture. Smoothing is enabled by default. Inherited From Phaser.Component.Smoothed#smoothed Source code: gameobjects/components/Smoothed.js (Line 25)