From 73ffff33d05d7e457cd066d694b3bd149c933827 Mon Sep 17 00:00:00 2001 From: "K. S. Ernest (iFire) Lee" Date: Mon, 7 Jun 2021 00:29:00 -0700 Subject: [PATCH] Default to assume fbx isn't PBR. --- src/FBX2glTF.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FBX2glTF.h b/src/FBX2glTF.h index 98d8a87..731b212 100644 --- a/src/FBX2glTF.h +++ b/src/FBX2glTF.h @@ -107,7 +107,7 @@ struct GltfOptions { /** Whether to use KHR_materials_unlit to extend materials definitions. */ bool useKHRMatUnlit{false}; /** Whether to populate the pbrMetallicRoughness substruct in materials. */ - bool usePBRMetRough{true}; + bool usePBRMetRough{false}; /** Whether to include lights through the KHR_punctual_lights extension. */ bool useKHRLightsPunctual{true};