deepaksinghkushwah Posted December 18, 2014 Report 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. Quote Link to comment Share on other sites More sharing options...
Loopeex Posted December 18, 2014 Report 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/ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.