Motion Canvas v3.17.0
New features ๐โ

The
Latexnode now supports tweening:
#800Press play to preview the animationimport ...
export default makeScene2D(function* (view) {
const tex = createRef<Latex>();
view.add(<Latex ref={tex} tex="{{y=}}{{a}}{{x^2}}" fill="white" />);
yield* waitFor(0.2);
yield* tex().tex('{{y=}}{{a}}{{x^2}} + {{bx}}', 1);
yield* waitFor(0.2);
yield* tex().tex(
'{{y=}}{{\\left(}}{{a}}{{x^2}} + {{bx}}{{\\over 1}}{{\\right)}}',
1,
);
yield* waitFor(0.2);
yield* tex().tex('{{y=}}{{a}}{{x^2}}', 1);
});
#631?renderand?presenturl parameters can be used to immediately start rendering or presenting when opening the editor.
Fixed bugs ๐โ

Txtnodes properly support tweening emojis.
#1085
Fix stack overflow caused by restoring a
Codenode
#1084
Prevent invalid cache sizes.
#1083
Fix line tweening.
#1075
Fix text alignment.
#1061
Check out the Update Guide for information on how to update your existing projects.
