New 'SVG Picture' plugin; Family folders; Async functions & more.
Cool, thanks for the SVG plugin. Question though, if I set the width and height at runtime will it re-rasterize at runtime to the width/height I set it to?
To avoid thrashing rasterization, it rasterizes at the next power-of-two size rounded up, and only re-rasterizes if you go larger than that. It will then step up to the next power-of-two size, minimising the amount of rasterization going on if you slowly scale up an SVG.
Cool, thanks.