NifLoader: fall back to the first UV set when encountering invalid UV set references

openmw-38
scrawl 9 years ago
parent fce43854bc
commit 723c392a73

@ -963,7 +963,9 @@ namespace NifOsg
int uvSet = *it;
if (uvSet >= (int)data->uvlist.size())
{
std::cerr << "Warning: using an undefined UV set " << uvSet << " on TriShape \"" << triShape->name << "\" in " << mFilename << std::endl;
std::cerr << "Warning: out of bounds UV set " << uvSet << " on TriShape \"" << triShape->name << "\" in " << mFilename << std::endl;
if (data->uvlist.size())
geometry->setTexCoordArray(textureStage, data->uvlist[0]);
continue;
}

Loading…
Cancel
Save