1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 04:19:53 +08:00

Change CornerRadius Max Value

This commit is contained in:
Ryuki
2022-09-18 00:04:56 +02:00
Unverified
parent c1077d909c
commit ecf71df8a2
+2 -2
View File
@@ -15,10 +15,10 @@ namespace osu.Game.Screens.Play.HUD
public class SkinnableAvatar : CompositeDrawable, ISkinnableDrawable
{
[SettingSource("Corner radius", "How much the edges should be rounded.")]
public new BindableFloat CornerRadius { get; set; } = new BindableFloat(0)
public new BindableFloat CornerRadius { get; set; } = new BindableFloat
{
MinValue = 0,
MaxValue = 100,
MaxValue = 63,
Precision = 0.01f
};