跳到主要内容

Motion Canvas v3.17.0

· 阅读需 2 分钟
Jacob
Motion Canvas Creator

New features 🎉

  • levirs565's avatarLatex

    节点现在支持补间:

    #800
    Press play to preview the animation
    import ...

    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);
    });

  • squigglesdev's avatar

    ?render?present url 参数可用于在打开编辑器时立即开始渲染或演示。

    #631

Fixed bugs 🐛

  • aarthificial's avatarTxt

    节点正确支持补间表情符号。

    #1085
  • aarthificial's avatar

    修复恢复

    Code

    节点引起的堆栈溢出

    #1084
  • aarthificial's avatar

    防止无效的缓存大小。

    #1083
  • aarthificial's avatar

    修复线补间。

    #1075
  • aarthificial's avatar

    修复文本对齐。

    #1061

查看 更新指南 获取如何更新现有项目的信息。