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
cache
d nodes no longer results in quality loss.#498 - All methods of
Vector2
now acceptPossibleVector2
as arguments, making it possible to write code like this: #478vector.add([100, 200]).mul(2);
- New
Polygon
node lets you quickly create regular polygons:The code above will generate a hexagon.#463<Polygon
sides={6}
size={300}
fill={'lightseagreen'}
/>