1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 20:22:55 +08:00

Reverse order of application to match DrawableHitObject

This commit is contained in:
Dean Herbert 2023-01-25 11:47:15 +09:00
parent 3a47be6e00
commit d8365f4fca

View File

@ -122,10 +122,10 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
// Schedule the change to avoid transforms piling up. // Schedule the change to avoid transforms piling up.
Scheduler.AddOnce(() => Scheduler.AddOnce(() =>
{ {
updateStateTransforms(drawableObject, drawableObject.State.Value);
ApplyTransformsAt(double.MinValue, true); ApplyTransformsAt(double.MinValue, true);
ClearTransformsAfter(double.MinValue, true); ClearTransformsAfter(double.MinValue, true);
updateStateTransforms(drawableObject, drawableObject.State.Value);
}); });
}, true); }, true);