Constructor


TileLayer(map: any, data: any)

Arguments:

map: any
data: any




Methods




TileLayer:getTile(x: any, y: any)

Arguments:

x: any
y: any

Returns:

1: unknown|nil
2: integer|unknown


TileLayer:setTile(x: any, y: any, tileset: any, : unknown)

Arguments:

x: any
y: any
tileset: any
: unknown



Fields



Undocumented







TileLayer.canvas: love.Canvas

A Canvas is used for off-screen rendering. Think of it as an invisible screen that you can draw to, but that will not be visible until you draw it to the actual visible screen. It is also known as "render to texture".

By drawing things that do not change position often (such as background items) to the Canvas, and then drawing the entire Canvas instead of each item, you can reduce the number of draw operations performed each frame.

In versions prior to love.graphics.isSupported("canvas") could be used to check for support at runtime.

Open in Browser