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
Describe the bug
interpolateNumber API has changed
From: export function interpolateNumber (t: number, values: number[], decimal = 3) {
To: export function interpolateNumber(frames: number[], values: number[], decimal = 3) {
To Reproduce
Steps to reproduce the behavior:
Run an app that still uses the old API
Expected behavior
Without a major version bump I expect interpolateNumber to not have a breaking change. I see the idea was to batch interpolate numbers.
If that's the case I think adding a new method interpolateNumbers implement the new behaviour and possibly having the old function call out to it.