mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 16:43:52 +09:00
Apply changes to tests of juice stream placement
This commit is contained in:
@ -67,10 +67,19 @@ namespace osu.Game.Rulesets.Catch.Tests.Editor
|
|||||||
[Test]
|
[Test]
|
||||||
public void TestVelocityLimit()
|
public void TestVelocityLimit()
|
||||||
{
|
{
|
||||||
double[] times = { 100, 300, 500 };
|
double[] times = { 100, 300 };
|
||||||
float[] positions = { 200, 300, 100 };
|
float[] positions = { 200, 500 };
|
||||||
addPlacementSteps(times, positions);
|
addPlacementSteps(times, positions);
|
||||||
addPathCheckStep(times, new float[] { 200, 200, 100 });
|
addPathCheckStep(times, new float[] { 200, 300 });
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestPreviousVerticesAreFixed()
|
||||||
|
{
|
||||||
|
double[] times = { 100, 300, 500, 700 };
|
||||||
|
float[] positions = { 200, 400, 100, 500 };
|
||||||
|
addPlacementSteps(times, positions);
|
||||||
|
addPathCheckStep(times, new float[] { 200, 300, 200, 300 });
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
Reference in New Issue
Block a user