Update ParseJSONTiled.js

This commit is contained in:
svipal 2020-02-08 12:15:30 +01:00 committed by GitHub
parent 71cf182d97
commit 283bb46358
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,11 +35,10 @@ var ParseJSONTiled = function (name, json, insertNull)
if (json.orientation === 'isometric') if (json.orientation === 'isometric')
{ {
console.warn('isometric map types are WIP in this version of Phaser'); console.warn('isometric map types are WIP in this version of Phaser');
} }
else if (json.orientation !== 'orthogonal') 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; return null;
} }