Jump to content

How to set the position of tilemapLayer


herksaw
 Share

Recommended Posts

How do I set the position of tilemapLayer in game world? I have tried the following code but it's not working:

 

var width = map.layers[0].width * tileset.tileWidth;
var height = map.layers[0].height * tileset.tileHeight;

 

layer = game.add.tilemapLayer(game.world.centerX - (width / 2), game.world.centerY - (height / 2), width, height, tileset, map, 0);
 
I need to set the position of tilemapLayer to center.
Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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