From f5e13874e088543aca4cc3ffc1f5b0680b6d10b5 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Sun, 6 Dec 2015 16:49:10 +0100 Subject: [PATCH] glTF: check if exporter option has broke someting. --- code/Exporter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/Exporter.cpp b/code/Exporter.cpp index 215fa671c..5e5f2711a 100644 --- a/code/Exporter.cpp +++ b/code/Exporter.cpp @@ -139,9 +139,9 @@ Exporter::ExportFormatEntry gExporters[] = #ifndef ASSIMP_BUILD_NO_GLTF_EXPORTER Exporter::ExportFormatEntry( "gltf", "GL Transmission Format", "gltf", &ExportSceneGLTF, - aiProcess_JoinIdenticalVertices | aiProcess_SortByPType), + aiProcess_JoinIdenticalVertices /*| aiProcess_SortByPType*/), Exporter::ExportFormatEntry( "glb", "GL Transmission Format (binary)", "glb", &ExportSceneGLB, - aiProcess_JoinIdenticalVertices | aiProcess_SortByPType), + aiProcess_JoinIdenticalVertices /*| aiProcess_SortByPType*/), #endif #ifndef ASSIMP_BUILD_NO_ASSBIN_EXPORTER