1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 03:22:55 +08:00

Fix formatting issues

This commit is contained in:
Dean Herbert 2020-10-13 20:50:36 +09:00
parent 3d416f4d64
commit 8057ea1097
3 changed files with 10 additions and 4 deletions

View File

@ -77,7 +77,10 @@ namespace osu.Game.Screens.Select.Carousel
BorderContainer.BorderThickness = 0;
BorderContainer.EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Shadow, Offset = new Vector2(1), Radius = 10, Colour = Color4.Black.Opacity(100),
Type = EdgeEffectType.Shadow,
Offset = new Vector2(1),
Radius = 10,
Colour = Color4.Black.Opacity(100),
};
break;
@ -85,7 +88,10 @@ namespace osu.Game.Screens.Select.Carousel
BorderContainer.BorderThickness = 2.5f;
BorderContainer.EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Glow, Colour = new Color4(130, 204, 255, 150), Radius = 20, Roundness = 10,
Type = EdgeEffectType.Glow,
Colour = new Color4(130, 204, 255, 150),
Radius = 20,
Roundness = 10,
};
break;
}

View File

@ -29,4 +29,4 @@ namespace osu.Game.Screens.Select.Carousel
return true;
}
}
}
}

View File

@ -35,4 +35,4 @@ namespace osu.Game.Screens.Select.Carousel
this.FadeTo(1 - 0.9f * ((float)Items.Count(i => i.Filtered.Value) / Items.Count), 100);
}
}
}
}