deepaksinghkushwah Posted December 18, 2014 Share Posted December 18, 2014 Hi all, is it possible to load multi layer map in phaser level. Please share any resource/tutorial/example if you have. Thanks. Link to comment Share on other sites More sharing options...
Loopeex Posted December 18, 2014 Share Posted December 18, 2014 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 More sharing options...
Recommended Posts