1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 14:12:56 +08:00

Make hitobjects a bit more visual

This commit is contained in:
Dean Herbert 2017-06-15 15:17:05 +09:00
parent 6679575c13
commit f07a31b2ca

View File

@ -118,6 +118,7 @@ namespace osu.Desktop.VisualTests.Tests
protected override void Update() protected override void Update()
{ {
base.Update(); base.Update();
topTime.Text = Time.Current.ToString("#,#"); topTime.Text = Time.Current.ToString("#,#");
bottomTime.Text = (Time.Current + timeRangeBindable.Value).ToString("#,#"); bottomTime.Text = (Time.Current + timeRangeBindable.Value).ToString("#,#");
} }
@ -152,6 +153,7 @@ namespace osu.Desktop.VisualTests.Tests
private class TestDrawableHitObject : DrawableHitObject private class TestDrawableHitObject : DrawableHitObject
{ {
private readonly Box background;
private const float height = 14; private const float height = 14;
public TestDrawableHitObject(HitObject hitObject) public TestDrawableHitObject(HitObject hitObject)
@ -165,7 +167,7 @@ namespace osu.Desktop.VisualTests.Tests
Children = new Drawable[] Children = new Drawable[]
{ {
new Box background = new Box
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Height = height, Height = height,
@ -187,6 +189,19 @@ namespace osu.Desktop.VisualTests.Tests
} }
}; };
} }
protected override void LoadComplete()
{
base.LoadComplete();
FadeInFromZero(250, EasingTypes.OutQuint);
}
protected override void Update()
{
base.Update();
if (Time.Current >= HitObject.StartTime)
background.Colour = Color4.Red;
}
} }
} }
} }