1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 07:27:51 +08:00

Change CornerRadius Max Value

This commit is contained in:
Ryuki 2022-09-18 00:04:56 +02:00
parent c1077d909c
commit ecf71df8a2
No known key found for this signature in database
GPG Key ID: A353889EAEACBF49

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