- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Tweens (easing functions) are essential for animating anything in a realistic, convincing or visually pleasing way. In Fusion, animations are basically all linear.
Note: It's possible to achieve custom (non-linear) animations using a Motion Study, but it's clunky and limited.
It would go a long way if the devs added a dropdown menu to the Transform dialog (inside the Animation Workspace) that allowed the user to select from the most common easing functions. However, it would be especially useful if we could extend that list with custom functions, defined using the API.
I'd like to suggest support for a new type of Python program, called a tween. Tweens would function like scripts and add-ons, but with a different entry point and lifecycle (and their own directories within the filesystem).
A tween would define a single entrypoint named f that is expected to be a pure function that implements a mathematical easing function (so it takes a normalized x-value, and returns the corresponding, normalized y-value).
Fusion would be free to instantiate f and invoke it as required, and to memoize results.
Naturally, the Motion Study UI would also be updated to allow the user to apply a tween to a line there too.
Note: Easing functions could also be defined by simple expressions (like x**2) inside textfields within the UI.
Solved! Go to Solution.