Skip to content

Commit 6efbfbe

Browse files
committed
Freeze V-Sekai settings.
1 parent 0e72666 commit 6efbfbe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/FBX2glTF.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,12 @@ struct GltfOptions {
102102
} draco;
103103

104104
/** Whether to include FBX User Properties as 'extras' metadata in glTF nodes. */
105-
bool enableUserProperties{false};
105+
bool enableUserProperties{true};
106106

107107
/** Whether to use KHR_materials_unlit to extend materials definitions. */
108108
bool useKHRMatUnlit{false};
109109
/** Whether to populate the pbrMetallicRoughness substruct in materials. */
110-
bool usePBRMetRough{false};
110+
bool usePBRMetRough{true};
111111

112112
/** Whether to include lights through the KHR_punctual_lights extension. */
113113
bool useKHRLightsPunctual{true};
@@ -119,13 +119,13 @@ struct GltfOptions {
119119
/** Whether to normalized skinning weights. */
120120
bool normalizeSkinningWeights { true };
121121
/** Maximum number of bone influences per vertex. */
122-
int maxSkinningWeights { 4 };
122+
int maxSkinningWeights { 8 };
123123
/** When to compute vertex normals from geometry. */
124124
ComputeNormalsOption computeNormals = ComputeNormalsOption::BROKEN;
125125
/** When to use 32-bit indices. */
126126
UseLongIndicesOptions useLongIndices = UseLongIndicesOptions::AUTO;
127127
/** Select baked animation framerate. */
128-
AnimationFramerateOptions animationFramerate = AnimationFramerateOptions::BAKE24;
128+
AnimationFramerateOptions animationFramerate = AnimationFramerateOptions::BAKE30;
129129

130130
/** Temporary directory used by FBX SDK. */
131131
std::string fbxTempDir;

0 commit comments

Comments
 (0)