mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 11:33:28 +00:00
Update ParseJSONTiled.js
This commit is contained in:
parent
71cf182d97
commit
283bb46358
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue