mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-14 15:00:18 -04:00
NifLoader: fall back to the first UV set when encountering invalid UV set references
This commit is contained in:
parent
fce43854bc
commit
723c392a73
@ -963,7 +963,9 @@ namespace NifOsg
|
|||||||
int uvSet = *it;
|
int uvSet = *it;
|
||||||
if (uvSet >= (int)data->uvlist.size())
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user