Constructor
new Proxy(tile, pos)
Constructor for a tile proxy.
Parameters:
Name | Type | Description |
---|---|---|
tile |
World.Tile | A reference to tile object that is the proxy subject |
pos |
p5.Vector | The position of the proxy tile |
- Source:
- See:
Methods
copy() → {World.Tile.Proxy}
A method to copy this proxy object. It passes a reference to the subject
tile and a copy of the current position.
This is not a pass through to the World.Tile.copy() method.
Returns:
- A new proxy to the same tile subject
- Type
- World.Tile.Proxy
draw()
Draws the tile subject in the location that the proxy has saved
generatePG()
Pass through to World.Tile.generatePg()
getLines() → {Array.<World.Line>}
Pass through to World.Tile.getLines()
Returns:
- The array of lines in the tile
- Type
- Array.<World.Line>
getName() → {string}
get name of the tile proxy
Returns:
- the name of the tile
- Type
- string
getPG() → {p5.Graphics}
Pass through to World.Tile.getPG()
Returns:
- The tile image
- Type
- p5.Graphics
setLines(lines)
Pass through to World.Tile.setLines(lines)
Parameters:
Name | Type | Description |
---|---|---|
lines |
Array.<World.Line> | The new array of lines |
setName(name)
set the name of the tile proxy
Parameters:
Name | Type | Description |
---|---|---|
name |
string | the name of the tile proxy |
setPos(newPos)
Pass through to World.Tile.setPos(newPos). The proxy object also saves
the location for the position so that when it calls position dependent
pass through functions it can set the position correctly.
Parameters:
Name | Type | Description |
---|---|---|
newPos |
p5.Vector | the new position of the tile |