mirror of
https://github.com/ppy/osu.git
synced 2025-02-12 08:33:04 +08:00
Add movement to misses in osu ruleset
This commit is contained in:
parent
f87bb589a2
commit
a4a94cb96e
@ -104,9 +104,8 @@ namespace osu.Game.Skinning
|
||||
this.ScaleTo(1.6f);
|
||||
this.ScaleTo(1, 100, Easing.In);
|
||||
|
||||
//todo: this only applies to osu! ruleset apparently.
|
||||
this.MoveTo(new Vector2(0, -2));
|
||||
this.MoveToOffset(new Vector2(0, 20), fade_out_delay + fade_out_length, Easing.In);
|
||||
this.MoveTo(new Vector2(0, -5));
|
||||
this.MoveToOffset(new Vector2(0, 80), fade_out_delay + fade_out_length, Easing.In);
|
||||
|
||||
float rotation = RNG.NextSingle(-8.6f, 8.6f);
|
||||
|
||||
|
@ -10,6 +10,8 @@ using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Utils;
|
||||
using osu.Game.Rulesets.Judgements;
|
||||
using osu.Game.Rulesets.Scoring;
|
||||
using osuTK;
|
||||
|
||||
|
||||
namespace osu.Game.Skinning
|
||||
{
|
||||
@ -55,6 +57,9 @@ namespace osu.Game.Skinning
|
||||
this.ScaleTo(1.6f);
|
||||
this.ScaleTo(1, 100, Easing.In);
|
||||
|
||||
this.MoveTo(new Vector2(0, -5));
|
||||
this.MoveToOffset(new Vector2(0, 80), fade_out_delay + fade_out_length, Easing.In);
|
||||
|
||||
float rotation = RNG.NextSingle(-8.6f, 8.6f);
|
||||
|
||||
this.RotateTo(0);
|
||||
|
Loading…
Reference in New Issue
Block a user