The tilemap renderer for pixi.js.
Currently only infinite Map is supported and the layer type is CSV.
npm i @iro/tilemap
import {Tilemap, Layer} from '@iro/tilemap'
const map = new Tilemap({
data: loader.resources['hometown.json'].data,
tileset: {
'1': loader.resources['1.png'].texture
}
})
stage.addChild(map)