1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

Make the layout faster

This commit is contained in:
smoogipoo 2019-12-16 18:41:02 +09:00
parent 94f3dbb2f6
commit 83f77d9c35

View File

@ -24,7 +24,7 @@ namespace osu.Game.Screens.Play
{
public class HUDOverlay : Container
{
private const int fade_duration = 400;
private const float fade_duration = 400;
private const Easing fade_easing = Easing.Out;
public readonly KeyCounterDisplay KeyCounter;
@ -103,8 +103,8 @@ namespace osu.Game.Screens.Play
Origin = Anchor.BottomRight,
Position = -new Vector2(5, TwoLayerButton.SIZE_RETRACTED.Y),
AutoSizeAxes = Axes.Both,
AutoSizeDuration = fade_duration,
AutoSizeEasing = fade_easing,
LayoutDuration = fade_duration / 2,
LayoutEasing = fade_easing,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{