Motion Canvas v3.5.0
Β· 2 min read
New features πβ

New
BΓ©ziernodes let you easily create splines consisting of only one segment:
#603Press play to preview the animationimport ...
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);
});
New
Videoproperties: #601

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

#608UPDATE AVAILABLEnow links to the GitHub release page.
Videos play smoothly when in presentation mode.
#600
Reused async resources are now correctly awaited.
#599
Arrow orientations for splines are correctly calculated.
#597
The showcase editor has been fixed.
#589
Check out the Update Guide for information on how to update your existing projects.