mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
af80418ee8
A breaking change in `ModWithVisibilityAdjustment` if the method was overriden.
27 lines
820 B
C#
27 lines
820 B
C#
// 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.
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
{
|
|
public class OsuModBarrelRoll : ModBarrelRoll<OsuHitObject>, IApplicableToDrawableHitObject
|
|
{
|
|
public void ApplyToDrawableHitObject(DrawableHitObject d)
|
|
{
|
|
d.OnUpdate += _ =>
|
|
{
|
|
switch (d)
|
|
{
|
|
case DrawableHitCircle circle:
|
|
circle.CirclePiece.Rotation = -CurrentRotation;
|
|
break;
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|