mirror of
https://github.com/ppy/osu.git
synced 2024-11-15 14:37:30 +08:00
Remove weird method
This commit is contained in:
parent
cb833007e0
commit
e064965281
@ -5,6 +5,7 @@ using System.Linq;
|
|||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Extensions.Color4Extensions;
|
using osu.Framework.Extensions.Color4Extensions;
|
||||||
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Sprites;
|
using osu.Framework.Graphics.Sprites;
|
||||||
using osu.Framework.Input.Events;
|
using osu.Framework.Input.Events;
|
||||||
using osu.Framework.Localisation;
|
using osu.Framework.Localisation;
|
||||||
@ -14,6 +15,7 @@ using osu.Game.Online.API.Requests;
|
|||||||
using osu.Game.Online.API.Requests.Responses;
|
using osu.Game.Online.API.Requests.Responses;
|
||||||
using osu.Game.Overlays.Notifications;
|
using osu.Game.Overlays.Notifications;
|
||||||
using osu.Game.Resources.Localisation.Web;
|
using osu.Game.Resources.Localisation.Web;
|
||||||
|
using SharpCompress;
|
||||||
|
|
||||||
namespace osu.Game.Overlays.Profile.Header.Components
|
namespace osu.Game.Overlays.Profile.Header.Components
|
||||||
{
|
{
|
||||||
@ -186,21 +188,20 @@ namespace osu.Game.Overlays.Profile.Header.Components
|
|||||||
case FriendStatus.None:
|
case FriendStatus.None:
|
||||||
IdleColour = colourProvider.Background6;
|
IdleColour = colourProvider.Background6;
|
||||||
HoverColour = colourProvider.Background5;
|
HoverColour = colourProvider.Background5;
|
||||||
SetBackgroundColour(colourProvider.Background6, 200);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case FriendStatus.NotMutual:
|
case FriendStatus.NotMutual:
|
||||||
IdleColour = colour.Green.Opacity(0.7f);
|
IdleColour = colour.Green.Opacity(0.7f);
|
||||||
HoverColour = IdleColour.Lighten(0.05f);
|
HoverColour = IdleColour.Lighten(0.1f);
|
||||||
SetBackgroundColour(IdleColour, 200);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case FriendStatus.Mutual:
|
case FriendStatus.Mutual:
|
||||||
IdleColour = colour.Pink.Opacity(0.7f);
|
IdleColour = colour.Pink.Opacity(0.7f);
|
||||||
HoverColour = IdleColour.Lighten(0.05f);
|
HoverColour = IdleColour.Lighten(0.1f);
|
||||||
SetBackgroundColour(colour.Pink.Opacity(0.7f), 200);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EffectTargets.ForEach(d => d.FadeColour(IsHovered ? HoverColour : IdleColour, FADE_DURATION, Easing.OutQuint));
|
||||||
}
|
}
|
||||||
|
|
||||||
private enum FriendStatus
|
private enum FriendStatus
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Colour;
|
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Graphics.Shapes;
|
using osu.Framework.Graphics.Shapes;
|
||||||
using osu.Game.Graphics.Containers;
|
using osu.Game.Graphics.Containers;
|
||||||
@ -49,11 +48,6 @@ namespace osu.Game.Overlays.Profile.Header.Components
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void SetBackgroundColour(ColourInfo colorInfo, double duration = 0)
|
|
||||||
{
|
|
||||||
background.FadeColour(colorInfo, duration);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void ShowLoadingLayer()
|
protected void ShowLoadingLayer()
|
||||||
{
|
{
|
||||||
loading.Show();
|
loading.Show();
|
||||||
|
Loading…
Reference in New Issue
Block a user