mirror of
https://github.com/ppy/osu.git
synced 2024-11-18 18:12:59 +08:00
Moved flying objects to use ignore hit judgements
This commit is contained in:
parent
78492dbba8
commit
940d85cfa6
@ -5,6 +5,7 @@ using osu.Framework.Allocation;
|
|||||||
using osu.Game.Beatmaps;
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Beatmaps.ControlPoints;
|
using osu.Game.Beatmaps.ControlPoints;
|
||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
|
using osu.Game.Rulesets.Judgements;
|
||||||
using osu.Game.Rulesets.Scoring;
|
using osu.Game.Rulesets.Scoring;
|
||||||
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
|
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
|
||||||
|
|
||||||
@ -35,7 +36,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|||||||
}
|
}
|
||||||
|
|
||||||
public DrawableFlyingCentreHit(double time, bool isStrong = false)
|
public DrawableFlyingCentreHit(double time, bool isStrong = false)
|
||||||
: base(new Hit { StartTime = time, IsStrong = isStrong })
|
: base(new IgnoreHit { StartTime = time, IsStrong = isStrong })
|
||||||
{
|
{
|
||||||
HitObject.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
HitObject.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|||||||
}
|
}
|
||||||
|
|
||||||
public DrawableFlyingRimHit(double time, bool isStrong = false)
|
public DrawableFlyingRimHit(double time, bool isStrong = false)
|
||||||
: base(new Hit { StartTime = time, IsStrong = isStrong })
|
: base(new IgnoreHit { StartTime = time, IsStrong = isStrong })
|
||||||
{
|
{
|
||||||
HitObject.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
HitObject.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user