closes https://github.com/assimp/assimp/issues/1784: change so.name to keep track of the minor version of the lib.

This commit is contained in:
kimkulling
2018-04-19 08:52:21 +02:00
parent 3f26a35a16
commit f2833539d7
2 changed files with 4 additions and 5 deletions

View File

@@ -396,8 +396,7 @@ void glTF2Importer::ImportMeshes(glTF2::Asset& r)
// only extract tangents if normals are present
if (attr.tangent.size() > 0 && attr.tangent[0]) {
// generate bitangents from normals and tangents according to spec
struct Tangent
{
struct Tangent {
aiVector3D xyz;
ai_real w;
} *tangents = nullptr;