From 8be4ef3931f01882b2978dedf5c938a0614c0f37 Mon Sep 17 00:00:00 2001 From: "K. S. Ernest (iFire) Lee" Date: Sun, 28 Nov 2021 13:50:28 -0800 Subject: [PATCH] Do not auto embed resources. --- src/FBX2glTF.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FBX2glTF.h b/src/FBX2glTF.h index 11598a2..0ab1e00 100644 --- a/src/FBX2glTF.h +++ b/src/FBX2glTF.h @@ -88,7 +88,7 @@ struct GltfOptions { /** Whether to output a .glb file, the binary format of glTF. */ bool outputBinary{false}; /** If non-binary, whether to inline all resources, for a single (large) .glTF file. */ - bool embedResources{true}; + bool embedResources{false}; bool keepOriginals{false};