cartographer
cartographer copied to clipboard
Simple Tiled map loading for LÖVE.
Hi! I am using typescript to make my own game in love2d and have written a [declaration](https://github.com/Nyaacinth/cartographer-types) for cartographer. It seems like you are doing the same thing in the...
Tiled has an option to embed a tileset into the map itself. The embedded png is injected as a property into the tileset at key "embedded_png". My suggestion is that...
``` cartographer = require 'externalLibs.cartographer.cartographer' -- if it's in subfolders -- load a map local map = cartographer.load 'map.lua' function love.load() local layer = map:getLayer("layer1") local allTiles = layer:getTiles() for...