Showing results for

tilemap

layers

on defold.com
defold.com › ref › beta › editor lua
API reference (Editor)
...in a tile map
PARAMETERS
RETURNS
EXAMPLES
Iterate over all tiles in a tile map:
defold.com › tutorials › 15 puzzle
Building a 15 puzzle game in Defold
...New ▸ Tile Map. Name the new file “grid.tilemap”.
Defold needs you to initialize the grid. To do that, select the “layer1” layer and...
defold.com › 2025 › 06 › 10
Defold release 1.10.2
...local layers = editor.get("/level.tilemap", "layers")
for i = 1, #layers do
local layer = layers[i]
local id = editor.get(layer, "id")
local tiles...
defold.com › 2024 › 06 › 25
Defold release 1.9.0
...brush when painting in tilemap. Now it’s possible to flip and to rotate the brush when editing tile map using the following hotkeys...
defold.com › manuals › editor scripts
Editor scripts
...local layers = editor.get("/level.tilemap", "layers")
for i = 1, #layers do
local layer = layers[i]
local id = editor.get(layer, "id")
local tiles...
defold.com › 2022 › 04 › 05
Defold release 1.3.1
...What’s worse is if the tilemaps have different number of layers it will in fact result in a crash.
This kind of very...
defold.com › 2020 › 03 › 30
Defold roadmap for 2020
...While we did some minor improvements to the tilemap system in 2019 (better tile palette and interleaved layers) we have so far left out...
defold.com › 2021 › 06 › 07
Creating point and click adventure games using Defold
...Let’s see how it’s done!
As you can easily see I’ve got an image with layers, and the layer names have...
defold.com › manuals › render
The render pipeline in Defold
...It is possible to more effectively batch GUI nodes while maintaining node hierarchies using GUI layers. You can read more about GUI layers and...
defold.com › 2024 › 03 › 11
Defold release 1.7.0
...msg.post(url, "request_transform")
and "transform_response"
– requests the transform from an instancemsg.post(url, "set_tile", ...)
– use tilemap.set_tile()
insteadNEW: (#8424) Render target as a...