2017-11-17 01:08:58 +00:00
|
|
|
var GetTilesWithin = require('./GetTilesWithin');
|
|
|
|
|
2017-11-22 01:19:13 +00:00
|
|
|
// Swaps indices, not other properties. Does not modify collisions. Matches v2 functionality.
|
2017-11-17 01:08:58 +00:00
|
|
|
var SwapByIndex = function (indexA, indexB, tileX, tileY, width, height, layer)
|
|
|
|
{
|
2017-11-26 00:03:21 +00:00
|
|
|
var tiles = GetTilesWithin(tileX, tileY, width, height, null, layer);
|
2017-11-17 01:08:58 +00:00
|
|
|
for (var i = 0; i < tiles.length; i++)
|
|
|
|
{
|
|
|
|
if (tiles[i])
|
|
|
|
{
|
|
|
|
if (tiles[i].index === indexA)
|
|
|
|
{
|
|
|
|
tiles[i].index = indexB;
|
|
|
|
}
|
|
|
|
else if (tiles[i].index === indexB)
|
|
|
|
{
|
|
|
|
tiles[i].index = indexA;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = SwapByIndex;
|