name tiles "roomname n" e.g. Bedroom 1 for easier searching
This commit is contained in:
@@ -521,13 +521,15 @@ $(document).ready(function() {
|
||||
var newTiles = _.filter(bitsyData.tiles, 'new');
|
||||
var tileText = "";
|
||||
|
||||
_.each(newTiles, function(tile) {
|
||||
_.each(newTiles, function(tile, n) {
|
||||
tileText += "TIL " + tile.name + "\n"; //again, rename tile name to id...
|
||||
|
||||
_.each(tile.bitmap, function(row) {
|
||||
tileText += row.join('') + "\n";
|
||||
});
|
||||
|
||||
tileText += "NAME " + newRoomName + " " + (n + 1) + "\n";
|
||||
|
||||
// don't need to worry about animation right now
|
||||
|
||||
tileText += "\n";
|
||||
|
||||
Reference in New Issue
Block a user