Phaser API Documentation

  Version: 
TiledObject
Properties:
name type arguments description
id number

The unique object ID.

name string

The name this object was assigned in Tiled.

type string

The type, as assigned in Tiled.

visible boolean <optional>

The visible state of this object.

x number <optional>

The horizontal position of this object, in pixels, relative to the tilemap.

y number <optional>

The vertical position of this object, in pixels, relative to the tilemap.

width number <optional>

The width of this object, in pixels.

height number <optional>

The height of this object, in pixels.

rotation number <optional>

The rotation of the object in clockwise degrees.

properties any <optional>

Custom properties object.

gid number <optional>

Only set if of type 'tile'.

flippedHorizontal boolean <optional>

Only set if a tile object. The horizontal flip value.

flippedVertical boolean <optional>

Only set if a tile object. The vertical flip value.

flippedAntiDiagonal boolean <optional>

Only set if a tile object. The diagonal flip value.

polyline Array.<Phaser.Types.Math.Vector2Like> <optional>

Only set if a polyline object. An array of objects corresponding to points, where each point has an x property and a y property.

polygon Array.<Phaser.Types.Math.Vector2Like> <optional>

Only set if a polygon object. An array of objects corresponding to points, where each point has an x property and a y property.

text any <optional>

Only set if a text object. Contains the text objects properties.

rectangle boolean <optional>

Only set, and set to true, if a rectangle object.

ellipse boolean <optional>

Only set, and set to true, if a ellipse object.

point boolean <optional>

Only set, and set to true, if a point object.

Type:
object
Since: 3.0.0