1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-16 10:44:32 +02:00

allow removing a tile using the new SetTile methd

This commit is contained in:
Ell 2021-03-09 19:06:06 +01:00
parent 14e97abf87
commit 1d80965d24

View file

@ -190,16 +190,17 @@ namespace MLEM.Extended.Tiled {
} }
/// <summary> /// <summary>
/// Sets the tiled map tile at the given location to the given tile from the given tileset /// Sets the tiled map tile at the given location to the given tile from the given tileset.
/// If the passed <paramref name="tileset"/> or <paramref name="tile"/> is null, the tile at the location is removed instead.
/// </summary> /// </summary>
/// <param name="map">The map</param> /// <param name="map">The map</param>
/// <param name="layerName">The name of the layer</param> /// <param name="layerName">The name of the layer</param>
/// <param name="x">The x coordinate</param> /// <param name="x">The x coordinate</param>
/// <param name="y">The y coordinate</param> /// <param name="y">The y coordinate</param>
/// <param name="tileset">The tileset to use</param>R /// <param name="tileset">The tileset to use, or null to remove the tile</param>
/// <param name="tile">The tile to place, from the given tileset</param> /// <param name="tile">The tile to place, from the given tileset, or null to remove the tile</param>
public static void SetTile(this TiledMap map, string layerName, int x, int y, TiledMapTileset tileset, TiledMapTilesetTile tile) { public static void SetTile(this TiledMap map, string layerName, int x, int y, TiledMapTileset tileset, TiledMapTilesetTile tile) {
map.SetTile(layerName, x, y, tile.GetGlobalIdentifier(tileset, map)); map.SetTile(layerName, x, y, tileset != null && tile != null ? tile.GetGlobalIdentifier(tileset, map) : 0);
} }
/// <summary> /// <summary>