mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 14:23:02 +08:00
Moved result to load complete for flying hits
This commit is contained in:
parent
5b4f69bb8c
commit
44405d4771
@ -9,8 +9,9 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
||||
{
|
||||
public class DrawableFlyingCentreHit : DrawableCentreHit
|
||||
{
|
||||
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
base.LoadComplete();
|
||||
ApplyResult(r => r.Type = HitResult.Good);
|
||||
}
|
||||
|
||||
|
@ -9,8 +9,9 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
||||
{
|
||||
public class DrawableFlyingRimHit : DrawableRimHit
|
||||
{
|
||||
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
base.LoadComplete();
|
||||
ApplyResult(r => r.Type = HitResult.Good);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user