Skip to content

JetLua/tilemap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tilemap

The tilemap renderer for pixi.js.

Currently only infinite Map is supported and the layer type is CSV.

DEMO

Install

npm i @iro/tilemap

Usage

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)