Open matthiasferch opened 3 years ago
Perhaps you've already figured this out. In case it could help anyone, the included interpolate function can be used for that.
const fromTo = interpolate(
[0, 1],
[
{ x: 0.0, y: 0.0 },
{ x: 4.0, y: 2.0 }
]
)
animate({ onUpdate: v => console.log(fromTo(v)) });
I guess you could create an animate
wrapper that automates it too.
I would like to be able to animate a 2D vector, like so:
I would like to try adding support for this myself but I'm not sure where to start. Could you point me in the right direction?