Make test run multiple times

This commit is contained in:
Dean Herbert 2020-11-19 17:16:29 +09:00
parent 83024f1ec5
commit fe025043bd
1 changed files with 3 additions and 3 deletions

View File

@ -16,15 +16,15 @@ public class TestSceneParticleExplosion : OsuTestScene
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
AddStep(@"display", () =>
AddRepeatStep(@"display", () =>
{
Child = new ParticleExplosion(textures.Get("Cursor/cursortrail"), 150, 1200)
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(200)
Size = new Vector2(400)
};
});
}, 10);
}
}
}