dungeon_crawler

diff prototype/src/tile.cc @ 9:b10ba85f75e0

lalala
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 17 Aug 2012 17:25:42 +0300
parents 8fb37db44fd8
children e5567ddbf2ef
line diff
     1.1 --- a/prototype/src/tile.cc	Fri Aug 17 14:30:25 2012 +0300
     1.2 +++ b/prototype/src/tile.cc	Fri Aug 17 17:25:42 2012 +0300
     1.3 @@ -19,7 +19,6 @@
     1.4  
     1.5  	unsigned int proc_flags = aiProcess_JoinIdenticalVertices |
     1.6  		aiProcess_Triangulate |
     1.7 -		aiProcess_GenNormals |
     1.8  		aiProcess_SortByPType |
     1.9  		aiProcess_FlipUVs;
    1.10  
    1.11 @@ -108,8 +107,7 @@
    1.12  		}
    1.13  		meshes.push_back(mesh);
    1.14  
    1.15 -
    1.16 -		printf("name: \"%s\" ... ", name);
    1.17 +		printf("    mesh: \"%s\"", name);
    1.18  
    1.19  		// find which side is this mesh on
    1.20  		unsigned int side = 0;
    1.21 @@ -128,7 +126,7 @@
    1.22  		if(!side) {
    1.23  			side = TILE_ALL;
    1.24  		}
    1.25 -		printf("side: 0x0%x\n", side);
    1.26 +		printf(" (0x0%x)\n", side);
    1.27  		mesh_side.push_back(side);
    1.28  
    1.29  		count++;