Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,6 @@ public static Tilemap FromFile(ContentManager content, string filename)
// Get the tileset index for this location
int tilesetIndex = int.Parse(columns[column]);

// Get the texture region of that tile from the tileset
TextureRegion region = tileset.GetTile(tilesetIndex);

// Add that region to the tilemap at the row and column location
tilemap.SetTile(column, row, tilesetIndex);
}
Expand Down