Constructor
new Tile(lines, pos)
constructor for the Tile
Parameters:
Name | Type | Description |
---|---|---|
lines |
Array.<World.Line> | The lines in the tile |
pos |
p5.Vector | The position of the tile |
- Source:
- See:
-
- World.Line
- World.Tile.proxy
- World.Room
Classes
Methods
copy() → {World.Tile}
Copies the all of the lines in the tile object and returns a new tile.
Returns:
- The new tile
- Type
- World.Tile
draw()
Draws the tile. If the tile image hasn't been created it is lazily
generated before it is drawn.
generatePG()
Generate the portable graphics image for the tile.
getLines() → {Array.<World.Line>}
Get the lines stored in the tile
Returns:
- The lines stored in the tile
- Type
- Array.<World.Line>
getName() → {string}
get the name of the tile
Returns:
- name of the tile
- Type
- string
getPG() → {p5.Graphics}
Gets the current image of the tile. If the tile image hasn't been
created then it will be lazily generated before being returned.
Returns:
- The tile image
- Type
- p5.Graphics
setLines(lines)
Sets the lines in the tile
Parameters:
Name | Type | Description |
---|---|---|
lines |
Array.<World.Line> | The lines to store in the tile |
setName(name)
Set the name of the tile
Parameters:
Name | Type | Description |
---|---|---|
name |
string | name of the tile |
setPos(newPos)
Change the position of the tile
Parameters:
Name | Type | Description |
---|---|---|
newPos |
p5.Vector | The new position of the tile |