Merge pull request #225 from peppy/hitobject-improvements

Slider & other hit object improvements.
This commit is contained in:
Dean Herbert
2016-12-08 16:11:50 +09:00
committed by GitHub
15 changed files with 480 additions and 300 deletions

View File

@ -22,7 +22,7 @@ namespace osu.Desktop.VisualTests.Tests
public TestCaseHitObjects()
{
var swClock = new StopwatchClock(true) { Rate = 1 };
var swClock = new StopwatchClock(true) { Rate = 0.2f };
Clock = new FramedClock(swClock);
}
@ -52,8 +52,10 @@ namespace osu.Desktop.VisualTests.Tests
Origin = Anchor.Centre,
Depth = i,
State = ArmedState.Hit,
Judgement = new OsuJudgementInfo { Result = HitResult.Hit }
};
approachContainer.Add(d.ApproachCircle.CreateProxy());
Add(d);
}