API / geotoolkit3d / data / loader / glTFType / ANIMATION_INTERPOLATION

Enumeration: ANIMATION_INTERPOLATION

loader.glTFType.ANIMATION_INTERPOLATION

The different interpolation types for AnimationSamplerType.interpolation

Table of contents

Enumeration Members

Contents

Enumeration Members

CUBICSPLINE

CUBICSPLINE = "CUBICSPLINE"

The animation's interpolation is computed using a cubic spline with specified tangents. The number of output elements MUST equal three times the number of input elements. For each input element, the output stores three elements, an in-tangent, a spline vertex, and an out-tangent. There MUST be at least two keyframes when using this interpolation.


LINEAR

LINEAR = "LINEAR"

The animated values are linearly interpolated between keyframes. When targeting a rotation, spherical linear interpolation (slerp) SHOULD be used to interpolate quaternions. The number of output elements MUST equal the number of input elements.


STEP

STEP = "STEP"

The animated values remain constant to the output of the first keyframe, until the next keyframe. The number of output elements MUST equal the number of input elements.