Pressing 't' now toggles wireframe mode.

This commit is contained in:
David Williams
2007-10-05 00:47:11 +00:00
parent 6cafc64e24
commit f730438f21
2 changed files with 9 additions and 3 deletions

View File

@ -722,11 +722,11 @@ namespace Ogre
}
uint noOfRemovedVertices = 0;
//do
do
{
//noOfRemovedVertices = iterPatch->second.decimate();
noOfRemovedVertices = iterPatch->second.decimate();
}
//while(noOfRemovedVertices > 10); //We don't worry about the last few vertices - it's not worth the overhead of calling the function.
while(noOfRemovedVertices > 10); //We don't worry about the last few vertices - it's not worth the overhead of calling the function.
}
//LogManager::getSingleton().logMessage("Finished Generating Mesh Data");