X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=helper.c;h=e72c64eb2f9780e4c546847a9f1a0d83ea3cf146;hp=aed5e9a818ccafb7500d712ce07032ae2e7491c7;hb=7456b4bf1856019e4fc84d1e896007497a31b0cf;hpb=b3a3d7099dce9e51d7163d724106e2e2fd8d9973;ds=sidebyside diff --git a/helper.c b/helper.c index aed5e9a..e72c64e 100644 --- a/helper.c +++ b/helper.c @@ -227,6 +227,8 @@ void drawFloor() { for ( int z = 0; z <= textureTileSize; z += subTileWidth ) { glColor3f( 1.0, 1.0, 1.0 ); + printf("Creating a subtile. Width: %d, x: %d, z: %d, tx: %d, tz: %d\n", subTileWidth, x, z, tx, tz); + glTexCoord2f( tx+textureTileSize, tz+textureTileSize ); glVertex3f ( (x+1)*subTileWidth, 0.0, (z+1)*subTileWidth );