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
1 changed files with 2 additions and 2 deletions

View File

@ -122,10 +122,10 @@ protected override void LoadComplete()
// Schedule the change to avoid transforms piling up.
Scheduler.AddOnce(() =>
{
updateStateTransforms(drawableObject, drawableObject.State.Value);
ApplyTransformsAt(double.MinValue, true);
ClearTransformsAfter(double.MinValue, true);
updateStateTransforms(drawableObject, drawableObject.State.Value);
});
}, true);