From Alberto Luaces, "it seems a copy-paste error is present on the OBJ loader when parsing the

options given by the user. "noTesselateLargePolygons" is being activated
instead of "noTriStripPolygons". I'm attaching the fixed file."
This commit is contained in:
Robert Osfield
2008-10-24 11:38:40 +00:00
parent 37cd3b419c
commit 48c31e5885

View File

@@ -700,7 +700,7 @@ osgDB::ReaderWriter::ReadResult ReaderWriterOBJ::readNode(const std::string& fil
if (options->getOptionString() == "noTriStripPolygons")
{
noTesselateLargePolygons = true;
noTriStripPolygons = true;
}
}