mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
312f52072b
change Avatar animation too add forgotten usings
53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
namespace osu.Game.Users
|
|
{
|
|
/// <summary>
|
|
/// An avatar which can update to a new user when needed.
|
|
/// </summary>
|
|
public class UpdateableAvatar : Container
|
|
{
|
|
private Drawable displayedAvatar;
|
|
|
|
private User user;
|
|
|
|
public User User
|
|
{
|
|
get { return user; }
|
|
set
|
|
{
|
|
if (user?.Id == value?.Id)
|
|
return;
|
|
|
|
user = value;
|
|
|
|
if (IsLoaded)
|
|
updateAvatar();
|
|
}
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
updateAvatar();
|
|
}
|
|
|
|
private void updateAvatar()
|
|
{
|
|
displayedAvatar?.FadeOut(300);
|
|
displayedAvatar?.Expire();
|
|
Add(displayedAvatar = new DelayedLoadWrapper(
|
|
new Avatar(user)
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
OnLoadComplete = d => d.FadeInFromZero(300, Easing.OutQuint),
|
|
})
|
|
);
|
|
}
|
|
}
|
|
}
|