You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The interpolation mode CATMULLROMSPLINE is not part of the glTF specification. By loading a standard glTF the AnimationSampler::interpolation string will never be equals to CATMULLROMSPLINE.
Interpolation between keys is performed using the interpolation method specified in the interpolation property. Supported interpolation values include LINEAR, STEP, and CUBICSPLINE
This information should be removed from the list.
If that interpolation mode is provided by an extension, it should be provided as an extension value anyway...
The text was updated successfully, but these errors were encountered:
Thanks! After glimpsed glTF git repo and github issues, CATMULLROMSPLINE was exist in glTF 2.0 beta phase(? when I started to working on the parser for glTF 2.0) but removed in the final glTF 2.0 spec.
Consider the comments here: https://github.com/syoyo/tinygltf/blob/master/tiny_gltf.h#L440
The interpolation mode
CATMULLROMSPLINE
is not part of the glTF specification. By loading a standard glTF theAnimationSampler::interpolation
string will never be equals toCATMULLROMSPLINE
.glTF 2.0 : https://github.com/KhronosGroup/glTF/tree/master/specification/2.0?ts=4#animations (3rd paragraph after the JSON codeblock)
This information should be removed from the list.
If that interpolation mode is provided by an extension, it should be provided as an extension value anyway...
The text was updated successfully, but these errors were encountered: