Skip to content

2019.726.0

Compare
Choose a tag to compare
@peppy peppy released this 26 Jul 08:12
a998d8c

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
    }
}