From 97450fcb5511886e35ff68e33da3f4060c0186d6 Mon Sep 17 00:00:00 2001 From: mnml_ Date: Thu, 8 Nov 2018 11:44:44 +0100 Subject: [PATCH] added DropFaceNormalsProcess to out vector --- code/PostStepRegistry.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/PostStepRegistry.cpp b/code/PostStepRegistry.cpp index a04092d3a..646aeaeb0 100644 --- a/code/PostStepRegistry.cpp +++ b/code/PostStepRegistry.cpp @@ -203,6 +203,9 @@ void GetPostProcessingStepInstanceList(std::vector< BaseProcess* >& out) #if (!defined ASSIMP_BUILD_NO_SPLITLARGEMESHES_PROCESS) out.push_back( new SplitLargeMeshesProcess_Triangle()); #endif +#if (!defined ASSIMP_BUILD_NO_GENFACENORMALS_PROCESS) + out.push_back( new DropFaceNormalsProcess()); +#endif #if (!defined ASSIMP_BUILD_NO_GENFACENORMALS_PROCESS) out.push_back( new GenFaceNormalsProcess()); #endif