mirror of https://github.com/ppy/osu
Use `switch` for pattern matching
This commit is contained in:
parent
db8ffc6316
commit
6b663037e4
|
@ -70,13 +70,15 @@ public void ApplyToBeatmap(IBeatmap beatmap)
|
||||||
// Move hit objects back into the playfield if they are outside of it
|
// Move hit objects back into the playfield if they are outside of it
|
||||||
Vector2 shift = Vector2.Zero;
|
Vector2 shift = Vector2.Zero;
|
||||||
|
|
||||||
if (hitObject is HitCircle circle)
|
switch (hitObject)
|
||||||
{
|
{
|
||||||
|
case HitCircle circle:
|
||||||
shift = clampHitCircleToPlayfield(circle, current);
|
shift = clampHitCircleToPlayfield(circle, current);
|
||||||
}
|
break;
|
||||||
else if (hitObject is Slider slider)
|
|
||||||
{
|
case Slider slider:
|
||||||
shift = clampSliderToPlayfield(slider, current);
|
shift = clampSliderToPlayfield(slider, current);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (shift != Vector2.Zero)
|
if (shift != Vector2.Zero)
|
||||||
|
|
Loading…
Reference in New Issue