mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 12:43:26 +00:00
Merge branch 'master' of https://github.com/photonstorm/phaser
This commit is contained in:
commit
33c9f39b9d
1 changed files with 3 additions and 4 deletions
|
@ -67,11 +67,10 @@ var ParseTileLayers = function (json, insertNull)
|
|||
var tile = new Tile(layerData, gidInfo.gid, x, output.length, json.tilewidth,
|
||||
json.tileheight);
|
||||
|
||||
// Turning Tiled's FlippedHorizontal, FlippedVertical and FlippedAntiDiagonal
|
||||
// propeties into flipX, flipY and rotation
|
||||
tile.rotation = gidInfo.rotation;
|
||||
tile.flipped = gidInfo.flipped;
|
||||
tile.flippedHorizontal = gidInfo.flippedHorizontal;
|
||||
tile.flippedVertical = gidInfo.flippedVertical;
|
||||
tile.flippedAntiDiagonal = gidInfo.flippedAntiDiagonal;
|
||||
tile.flipX = gidInfo.flipped;
|
||||
|
||||
row.push(tile);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue