mirror of https://github.com/ppy/osu
CI fixes.
This commit is contained in:
parent
aef2a3bdda
commit
29cdbc65bc
|
@ -189,10 +189,10 @@ protected override void PopIn()
|
|||
FadeIn(200);
|
||||
background.FlashColour(Color4.White.Opacity(0.25f), 400);
|
||||
|
||||
double duration1 = 400;
|
||||
double duration2 = 900;
|
||||
double duration3 = 900;
|
||||
double duration4 = 1000;
|
||||
var duration1 = 400;
|
||||
var duration2 = 900;
|
||||
var duration3 = 900;
|
||||
var duration4 = 1000;
|
||||
|
||||
getSample.Play();
|
||||
Delay(200, true);
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using OpenTK;
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
|
@ -20,7 +19,6 @@ public class DrawableMedal : Container
|
|||
private const float scale_when_unlocked = 0.76f;
|
||||
private const float scale_when_full = 0.6f;
|
||||
|
||||
private readonly Medal medal;
|
||||
private readonly Container medalContainer;
|
||||
private readonly Sprite medalGlow;
|
||||
private readonly OsuSpriteText unlocked, name;
|
||||
|
@ -31,7 +29,6 @@ public class DrawableMedal : Container
|
|||
|
||||
public DrawableMedal(Medal medal)
|
||||
{
|
||||
this.medal = medal;
|
||||
Position = new Vector2(0f, MedalOverlay.DISC_SIZE / 2);
|
||||
AlwaysPresent = true;
|
||||
|
||||
|
|
Loading…
Reference in New Issue