1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 06:52:53 +08:00

Adjust visual behavior.

This commit is contained in:
Huo Yaoyuan 2016-11-06 05:35:35 +08:00
parent 2bd447ca56
commit 0c6825bb20

View File

@ -42,7 +42,7 @@ namespace osu.Game.Overlays
Masking = true; Masking = true;
Anchor = Anchor.TopRight;//placeholder Anchor = Anchor.TopRight;//placeholder
Origin = Anchor.TopRight; Origin = Anchor.TopRight;
Position = new Vector2(10, 50); Position = new Vector2(10, 60);
Children = new Drawable[] Children = new Drawable[]
{ {
new Box new Box
@ -309,8 +309,8 @@ namespace osu.Game.Overlays
} }
//placeholder for toggling //placeholder for toggling
protected override void PopIn() => FadeIn(500); protected override void PopIn() => FadeIn(100);
protected override void PopOut() => FadeOut(500); protected override void PopOut() => FadeOut(100);
} }
} }