Motion Canvas v3.2.0
ยท 2 min read
New features ๐โ

New status bar lists the shortcuts available in the currently hovered panel.
#444
The current version is now displayed on the status bar. Clicking it will copy the versions of all packages currently in use.
#501
Cache is now stored using world space coordinates. Scaling up
cached nodes no longer results in quality loss.
#498
All methods of
Vector2now accept
PossibleVector2as arguments, making it possible to write code like this:
#478vector.add([100, 200]).mul(2);
New
Polygonnode lets you quickly create regular polygons:
<Polygon
sides={6}
size={300}
fill={'lightseagreen'}
/>The code above will generate a hexagon.
#463