From 283bb46358e3356f35a8e9b723b3862a2b240ed4 Mon Sep 17 00:00:00 2001 From: svipal <48034417+svipal@users.noreply.github.com> Date: Sat, 8 Feb 2020 12:15:30 +0100 Subject: [PATCH] Update ParseJSONTiled.js --- src/tilemaps/parsers/tiled/ParseJSONTiled.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tilemaps/parsers/tiled/ParseJSONTiled.js b/src/tilemaps/parsers/tiled/ParseJSONTiled.js index 884498487..e52d8eb13 100644 --- a/src/tilemaps/parsers/tiled/ParseJSONTiled.js +++ b/src/tilemaps/parsers/tiled/ParseJSONTiled.js @@ -35,11 +35,10 @@ var ParseJSONTiled = function (name, json, insertNull) if (json.orientation === 'isometric') { console.warn('isometric map types are WIP in this version of Phaser'); - } else if (json.orientation !== 'orthogonal') { - console.warn('Only orthogonal map types are supported in this version of Phaser'); + console.warn('Only orthogonal and standard isometric map types are supported in this version of Phaser'); return null; }