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:
parent
c1077d909c
commit
ecf71df8a2
@ -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
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user