// Copyright (c) 2007-2018 ppy Pty Ltd . // 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); } } } }