mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Better life time ends.
This commit is contained in:
@ -83,16 +83,17 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
|
||||
case ArmedState.Idle:
|
||||
break;
|
||||
case ArmedState.Miss:
|
||||
bodyContainer.FadeOut(100);
|
||||
FadeOut(100);
|
||||
Expire();
|
||||
break;
|
||||
case ArmedState.Hit:
|
||||
bodyContainer.ScaleTo(0.8f, 400, EasingTypes.OutQuad);
|
||||
bodyContainer.FadeOut(600, EasingTypes.OutQuint);
|
||||
bodyContainer.MoveToY(-200, 250, EasingTypes.Out);
|
||||
|
||||
bodyContainer.Delay(250);
|
||||
|
||||
bodyContainer.MoveToY(0, 500, EasingTypes.In);
|
||||
|
||||
FadeOut(600);
|
||||
Expire();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user