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