2019.726.0
Thanks for following along! This is a tagged release (2019.726.0). For more information check out the osu! changelog page and dev blog.
Breaking Changes
Path
now supports AutoSizeAxes
and is set to auto-size in both axes by default
There are now three modes of operation for paths:
// Auto size
new Path()
// Static size
new Path
{
AutoSizeAxes = Axes.None,
Size = new Vector2(100)
}
// Relative size
new Container
{
Size = new Vector2(100),
new Path
{
AutoSizeAxes = Axes.None,
RelativeSizeAxes = Axes.Both
}
}