Decouple direction of catcher from its scale

This commit is contained in:
ekrctb
2021-07-02 22:00:41 +09:00
parent 9eb6ae4d45
commit fbba32647e
2 changed files with 12 additions and 11 deletions

View File

@ -121,7 +121,7 @@ namespace osu.Game.Rulesets.Catch.UI
CatcherTrail sprite = trailPool.Get();
sprite.AnimationState = catcher.CurrentState;
sprite.Scale = catcher.Scale;
sprite.Scale = catcher.Scale * catcher.Body.Scale;
sprite.Position = catcher.Position;
target.Add(sprite);