1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 07:38:21 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/SkinnableAvatar.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.5 KiB
C#
Raw Normal View History

2022-09-18 03:09:34 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Configuration;
using osu.Game.Skinning;
using osu.Game.Users.Drawables;
using osuTK;
namespace osu.Game.Screens.Play.HUD
{
public partial class SkinnableAvatar : CompositeDrawable, ISerialisableDrawable
2022-09-18 03:09:34 +08:00
{
[SettingSource("Corner radius", "How much the edges should be rounded.")]
2022-09-18 06:04:56 +08:00
public new BindableFloat CornerRadius { get; set; } = new BindableFloat
2022-09-18 03:09:34 +08:00
{
MinValue = 0,
2022-09-18 06:04:56 +08:00
MaxValue = 63,
2022-09-18 03:09:34 +08:00
Precision = 0.01f
};
[Resolved]
private GameplayState gameplayState { get; set; } = null!;
private readonly UpdateableAvatar avatar;
public SkinnableAvatar()
{
Size = new Vector2(128f);
InternalChild = avatar = new UpdateableAvatar(isInteractive: false)
{
RelativeSizeAxes = Axes.Both,
Masking = true
};
}
protected override void LoadComplete()
{
base.LoadComplete();
avatar.User = gameplayState.Score.ScoreInfo.User;
avatar.CornerRadius = CornerRadius.Value;
2022-09-18 03:09:34 +08:00
CornerRadius.BindValueChanged(e => avatar.CornerRadius = e.NewValue);
}
public bool UsesFixedAnchor { get; set; }
}
}