1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 16:13:34 +08:00

Adjust time values

This commit is contained in:
Salman Ahmed 2024-03-10 07:23:22 +03:00
parent 82048df9f1
commit 8a1c5a7547

View File

@ -81,9 +81,9 @@ namespace osu.Game.Tests.Visual.Gameplay
{
AddStep("create sprite", () => Child = createSprite(s =>
{
var loop = s.AddLoopingGroup(600, 10);
loop.AddY(Easing.OutBounce, 0, 500, 100, 240);
loop.AddY(Easing.OutQuint, 700, 1000, 240, 100);
var loop = s.AddLoopingGroup(500, 10);
loop.AddY(Easing.OutBounce, 0, 600, 100, 240);
loop.AddY(Easing.OutQuint, 800, 1200, 240, 100);
}));
}