FBXMeshGeometry: solve issue #5116 using patch provided by darktjm
parent
d311fa95c6
commit
769e82ce5e
|
@ -467,9 +467,9 @@ void ResolveVertexDataArray(std::vector<T>& data_out, const Scope& source,
|
||||||
std::vector<int> uvIndices;
|
std::vector<int> uvIndices;
|
||||||
ParseVectorDataArray(uvIndices,GetRequiredElement(source,indexDataElementName));
|
ParseVectorDataArray(uvIndices,GetRequiredElement(source,indexDataElementName));
|
||||||
|
|
||||||
if (uvIndices.size() != vertex_count) {
|
if (uvIndices.size() != mapping_offsets.size()) {
|
||||||
FBXImporter::LogError("length of input data unexpected for ByVertice mapping: ",
|
FBXImporter::LogError("length of input data unexpected for ByVertice mapping: ",
|
||||||
uvIndices.size(), ", expected ", vertex_count);
|
uvIndices.size(), ", expected ", mapping_offsets.size());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue