mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Pass GameplayStartTime to FrameStabilityContainer to allow bypassing prior to start
This commit is contained in:
@ -73,6 +73,26 @@ namespace osu.Game.Tests.Visual.Gameplay
|
||||
checkFrameCount(2);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestInitialSeekWithGameplayStart()
|
||||
{
|
||||
seekManualTo(1000);
|
||||
createStabilityContainer(30000);
|
||||
|
||||
confirmSeek(1000);
|
||||
checkFrameCount(0);
|
||||
|
||||
seekManualTo(10000);
|
||||
confirmSeek(10000);
|
||||
|
||||
checkFrameCount(1);
|
||||
|
||||
seekManualTo(130000);
|
||||
confirmSeek(130000);
|
||||
|
||||
checkFrameCount(6002);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestInitialSeek()
|
||||
{
|
||||
|
Reference in New Issue
Block a user