Add scaling to the test

This commit is contained in:
smoogipoo 2019-09-11 13:40:53 +09:00
parent 562280ced0
commit e408efff49
1 changed files with 9 additions and 1 deletions

View File

@ -24,7 +24,15 @@ public class TestSceneCursorTrail : OsuTestScene
[Test]
public void TestSmoothCursorTrail()
{
createTest(() => new CursorTrail());
Container scalingContainer = null;
createTest(() => scalingContainer = new Container
{
RelativeSizeAxes = Axes.Both,
Child = new CursorTrail()
});
AddStep("set large scale", () => scalingContainer.Scale = new Vector2(10));
}
[Test]