We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09971b7 commit d8562b1Copy full SHA for d8562b1
Assets/MRTK/Core/Utilities/Gltf/Serialization/GltfUtility.cs
@@ -173,7 +173,7 @@ public static GltfObject GetGltfObjectFromJson(string jsonString)
173
Debug.LogError("One or more unsupported glTF extensions required. Unable to load the model.");
174
for (int i = 0; i < gltfObject.extensionsRequired.Length; ++i)
175
{
176
- Debug.Log($"Extension: {gltfObject.extensionsUsed[i]}");
+ Debug.Log($"Extension: {gltfObject.extensionsRequired[i]}");
177
}
178
return null;
179
@@ -460,4 +460,4 @@ private class StringIntKeyValueArray
460
461
462
463
-}
+}
0 commit comments