Motion Canvas v3.17.0
· 阅读需 2 分钟
New features 🎉

Latex节点现在支持补间:
#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?render和?presenturl 参数可用于在打开编辑器时立即开始渲染或演示。
Fixed bugs 🐛
查看 更新指南 获取如何更新现有项目的信息。
