Как правильно подключить тайловую карту в phaser.js?
Имеется код:
var game = new Phaser.Game(600, 450, Phaser.AUTO, 'game-field', { preload: preload, create: create, update: update });
function preload() {
game.load.image('tiles', '../assets/tilea2.png');
game.load.tilemap('tilemap', '../assets/map.json', null, Phaser.Tilemap.TILED_JSON);
}
function create() {
game.stage.backgroundColor = '#787878';
map = game.add.tilemap('tilemap');
map.addTilesetImage('tilea2.png', 'tiles');
layer = map.createLayer('world');
layer.resizeWorld();
}
function update() {
}
К сожалению он не работает. Подскажите пожалуйста в чем может быть ошибка.