diff --git a/src/tilemaps/parsers/tiled/ParseTileLayers.js b/src/tilemaps/parsers/tiled/ParseTileLayers.js index 67db6283c..d930742c3 100644 --- a/src/tilemaps/parsers/tiled/ParseTileLayers.js +++ b/src/tilemaps/parsers/tiled/ParseTileLayers.js @@ -129,7 +129,7 @@ var ParseTileLayers = function (json, insertNull) alpha: (curGroupState.opacity * curl.opacity), visible: (curGroupState.visible && curl.visible), orientation: CONST.fromOrientationString(json.orientation), - properties: GetFastValue(curl, 'properties', {}) + properties: GetFastValue(curl, 'properties', []) }); @@ -209,7 +209,7 @@ var ParseTileLayers = function (json, insertNull) alpha: (curGroupState.opacity * curl.opacity), visible: (curGroupState.visible && curl.visible), orientation: CONST.fromOrientationString(json.orientation), - properties: GetFastValue(curl, 'properties', {}) + properties: GetFastValue(curl, 'properties', []) });