mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
24 lines
771 B
C#
24 lines
771 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.MathUtils;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
{
|
|
public class TestCaseShaking : TestCaseHitCircle
|
|
{
|
|
public override void Add(Drawable drawable)
|
|
{
|
|
base.Add(drawable);
|
|
|
|
if (drawable is TestDrawableHitCircle hitObject)
|
|
{
|
|
Scheduler.AddDelayed(() => hitObject.TriggerJudgement(),
|
|
hitObject.HitObject.StartTime - (hitObject.HitObject.HitWindows.HalfWindowFor(HitResult.Miss) + RNG.Next(0, 300)) - Time.Current);
|
|
}
|
|
}
|
|
}
|
|
}
|