|
@@ -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;
|
|
}
|
|
}
|
|
|
|
|