Update framework and add rudimentary fading to song select screen.

This commit is contained in:
Thomas Müller
2016-11-20 12:16:54 +01:00
parent 0fdd505807
commit 57e7c7097d
7 changed files with 35 additions and 38 deletions

View File

@ -27,16 +27,12 @@ namespace osu.Desktop.VisualTests.Tests
public override string Description => @"Showing hitobjects and what not.";
FramedClock localClock;
protected override IFrameBasedClock Clock => localClock;
public override void Reset()
{
base.Reset();
//ensure we are at offset 0
localClock = new FramedClock();
Clock = new FramedClock();
List<HitObject> objects = new List<HitObject>();
@ -93,7 +89,7 @@ namespace osu.Desktop.VisualTests.Tests
protected override void Update()
{
base.Update();
localClock.ProcessFrame();
Clock.ProcessFrame();
}
}
}