How to apply an easing function over multiple animation keyframes?

On default, easing is applied for every keyframe in an animation: https://www.babylonjs-playground.com/#8ZNVGR#60

Is there a way to apply the easing function over multiple keyframes rather than each keyframe individually?

1 Like

Maybe you could chain several animation instead ? this would result in what you need ?

Apply interpolation across a list of points might be weird and hard to mentally predict.

Yeah well, when you use Curve3.CreateCatmullRomSpline() to make a fancy path for your camera, this becomes an issue since the keyframes are tightly stacked on each other. I guess I’ll have to do it some other way then. Cheers

1 Like