Skip to content

Commit

Permalink
Updated Changelog and Timesaver issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bohnacker committed Oct 8, 2015
1 parent 320be95 commit 8f0fbac
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 20 deletions.
9 changes: 5 additions & 4 deletions 02_M/M_1_4_01/TileSaver.pde
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ class TileSaver {
tileFilename=_filename;
tileNum=_num;
tileNumSq=(tileNum*tileNum);

// Reset tile counters to start over correctly
tileX = 0;
tileY = 0;

width=p.width;
height=p.height;
Expand Down Expand Up @@ -233,7 +237,4 @@ class TileSaver {

return name;
}
}



}
9 changes: 5 additions & 4 deletions 02_M/M_1_6_01_TOOL/TileSaver.pde
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ class TileSaver {
tileFilename=_filename;
tileNum=_num;
tileNumSq=(tileNum*tileNum);

// Reset tile counters to start over correctly
tileX = 0;
tileY = 0;

width=p.width;
height=p.height;
Expand Down Expand Up @@ -233,7 +237,4 @@ class TileSaver {

return name;
}
}



}
9 changes: 5 additions & 4 deletions 02_M/M_2_4_01/TileSaver.pde
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ class TileSaver {
tileFilename=_filename;
tileNum=_num;
tileNumSq=(tileNum*tileNum);

// Reset tile counters to start over correctly
tileX = 0;
tileY = 0;

width=p.width;
height=p.height;
Expand Down Expand Up @@ -233,7 +237,4 @@ class TileSaver {

return name;
}
}



}
9 changes: 5 additions & 4 deletions 02_M/M_3_4_03_TOOL/TileSaver.pde
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ class TileSaver {
tileFilename=_filename;
tileNum=_num;
tileNumSq=(tileNum*tileNum);

// Reset tile counters to start over correctly
tileX = 0;
tileY = 0;

width=p.width;
height=p.height;
Expand Down Expand Up @@ -233,7 +237,4 @@ class TileSaver {

return name;
}
}



}
9 changes: 5 additions & 4 deletions 02_M/M_4_4_01_TOOL/TileSaver.pde
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ class TileSaver {
tileFilename=_filename;
tileNum=_num;
tileNumSq=(tileNum*tileNum);

// Reset tile counters to start over correctly
tileX = 0;
tileY = 0;

width=p.width;
height=p.height;
Expand Down Expand Up @@ -233,7 +237,4 @@ class TileSaver {

return name;
}
}



}
9 changes: 9 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
GENERATIVEDESIGN CODE PACKAGE FOR PROCESSING 2.X

----------------------------------------------------------------
Version 1.0.4 - 08 Oct 2015

Bug fixes:
M_3_4_01_TOOL, M_3_4_03_TOOL: OpenGL issue fixed
Tilesaver Class: Fixed export
M_6_4_01_TOOL: Wikipedia changed from http to https


----------------------------------------------------------------
Version 1.0.3 - 15 Jun 2013

Expand Down

0 comments on commit 8f0fbac

Please sign in to comment.