Jump to content

Tilemap Layers


deepaksinghkushwah
 Share

Recommended Posts

It is totally possible, you can use for example Tiled to create your multi layers map, and load the saved map in json :

// Load map and tilesetgame.load.image('tileset', 'assets/tileset.png');game.load.tilemap('map', 'assets/map.json', null, Phaser.Tilemap.TILED_JSON);// Create the mapmap = this.game.add.tilemap('map');map.addTilesetImage('tileset');// Load the layerslayer1 = map.createLayer('layer1');layer1.resizeWorld();layer2 = map.createLayer('layer2');layer3 = map.createLayer('layer3');

You can take a look at the Phaser Tilemaps examples : http://examples.phaser.io/

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...