mirror of
https://github.com/ppy/osu.git
synced 2025-02-19 08:23:20 +08:00
Merge pull request #9984 from Poliwrath/lingering-circles
Fix lingering small ring in circles! intro
This commit is contained in:
commit
de222ddc24
@ -119,7 +119,7 @@ namespace osu.Game.Online.Chat
|
||||
case "http":
|
||||
case "https":
|
||||
// length > 3 since all these links need another argument to work
|
||||
if (args.Length > 3 && (args[1] == "osu.ppy.sh" || args[1] == "new.ppy.sh"))
|
||||
if (args.Length > 3 && args[1] == "osu.ppy.sh")
|
||||
{
|
||||
switch (args[2])
|
||||
{
|
||||
|
@ -205,6 +205,7 @@ namespace osu.Game.Screens.Menu
|
||||
const int line_end_offset = 120;
|
||||
|
||||
smallRing.Foreground.ResizeTo(1, line_duration, Easing.OutQuint);
|
||||
smallRing.Delay(400).FadeColour(Color4.Black, 300);
|
||||
|
||||
lineTopLeft.MoveTo(new Vector2(-line_end_offset, -line_end_offset), line_duration, Easing.OutQuint);
|
||||
lineTopRight.MoveTo(new Vector2(line_end_offset, -line_end_offset), line_duration, Easing.OutQuint);
|
||||
|
Loading…
Reference in New Issue
Block a user