mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Replace several usages of BeginDelayedSequence with LINQ-style
This commit is contained in:
@ -86,11 +86,7 @@ namespace osu.Game.Graphics.Cursor
|
||||
this.FadeIn(500, EasingTypes.OutQuint);
|
||||
}
|
||||
|
||||
protected override void PopOut()
|
||||
{
|
||||
using (BeginDelayedSequence(150))
|
||||
this.FadeOut(500, EasingTypes.OutQuint);
|
||||
}
|
||||
protected override void PopOut() => this.Delay(150).FadeOut(500, EasingTypes.OutQuint);
|
||||
|
||||
public override void Move(Vector2 pos)
|
||||
{
|
||||
|
Reference in New Issue
Block a user