1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneShaking.cs

26 lines
954 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-07-06 16:38:58 +08:00
using System.Diagnostics;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
2019-07-29 16:05:13 +08:00
using osu.Game.Rulesets.Osu.Objects;
2018-07-06 16:38:58 +08:00
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Osu.Tests
{
public class TestSceneShaking : TestSceneHitCircle
2018-07-06 16:38:58 +08:00
{
2019-07-29 16:05:13 +08:00
protected override TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto)
2018-07-06 16:38:58 +08:00
{
2019-07-29 16:05:13 +08:00
var drawableHitObject = base.CreateDrawableHitCircle(circle, auto);
2018-07-06 16:38:58 +08:00
Debug.Assert(drawableHitObject.HitObject.HitWindows != null);
2019-09-06 14:24:00 +08:00
double delay = drawableHitObject.HitObject.StartTime - (drawableHitObject.HitObject.HitWindows.WindowFor(HitResult.Miss) + RNG.Next(0, 300)) - Time.Current;
Scheduler.AddDelayed(() => drawableHitObject.TriggerJudgement(), delay);
2019-07-29 16:05:13 +08:00
return drawableHitObject;
2018-07-06 16:38:58 +08:00
}
}
}