Skip to main content

Motion Canvas v3.5.0

Β· 2 min read
Jacob
Motion Canvas Creator

New features πŸŽ‰β€‹

  • ksassnowski's avatar

    New

    BΓ©zier

    nodes let you easily create splines consisting of only one segment:

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

    export default makeScene2D(function* (view) {
    const bezier = createRef<CubicBezier>();

    view.add(
    <CubicBezier
    ref={bezier}
    lineWidth={6}
    stroke={'lightseagreen'}
    p0={[-200, 0]}
    p1={[50, -200]}
    p2={[-50, 200]}
    p3={[200, 0]}
    />,
    );

    yield* bezier().start(1, 1);
    yield* bezier().start(0).end(0).end(1, 1);
    });

  • aarthificial's avatar

    New

    Video

    properties: #601

    • play

      automatically plays the video

    • loop

      restarts the video upon reaching the end

  • aarthificial's avatar

    Fiddles now support multiple examples. You can switch between them using the dropdown on the right side.

Fixed bugs πŸ›β€‹

  • aarthificial's avatar

    UPDATE AVAILABLE now links to the GitHub release page.

    #608
  • aarthificial's avatar

    Videos play smoothly when in presentation mode.

    #600
  • aarthificial's avatar

    Reused async resources are now correctly awaited.

    #599
  • ksassnowski's avatar

    Arrow orientations for splines are correctly calculated.

    #597
  • aarthificial's avatar

    The showcase editor has been fixed.

    #589

Check out the Update Guide for information on how to update your existing projects.