mirror of
https://github.com/ppy/osu.git
synced 2025-02-01 18:33:02 +08:00
Added “instant fly” variant of hit notes
This commit is contained in:
parent
f676052528
commit
ccc764eace
@ -2,7 +2,10 @@
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Beatmaps.ControlPoints;
|
||||
using osu.Game.Graphics;
|
||||
using osu.Game.Rulesets.Scoring;
|
||||
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
|
||||
|
||||
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
||||
@ -23,4 +26,18 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
||||
MainPiece.AccentColour = colours.PinkDarker;
|
||||
}
|
||||
}
|
||||
|
||||
public class DrawableFlyingCentreHit : DrawableCentreHit
|
||||
{
|
||||
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
||||
{
|
||||
ApplyResult(r => r.Type = HitResult.Good);
|
||||
}
|
||||
|
||||
public DrawableFlyingCentreHit(double time)
|
||||
: base(new Hit { StartTime = time })
|
||||
{
|
||||
HitObject.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,10 @@
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Beatmaps.ControlPoints;
|
||||
using osu.Game.Graphics;
|
||||
using osu.Game.Rulesets.Scoring;
|
||||
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
|
||||
|
||||
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
||||
@ -23,4 +26,18 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
||||
MainPiece.AccentColour = colours.BlueDarker;
|
||||
}
|
||||
}
|
||||
|
||||
public class DrawableFlyingRimHit : DrawableRimHit
|
||||
{
|
||||
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
||||
{
|
||||
ApplyResult(r => r.Type = HitResult.Good);
|
||||
}
|
||||
|
||||
public DrawableFlyingRimHit(double time)
|
||||
: base(new Hit { StartTime = time })
|
||||
{
|
||||
HitObject.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user