Add comment covering intentional call to ClearTransformsAfter

This commit is contained in:
Dean Herbert
2020-11-23 15:18:54 +09:00
parent 9f997db958
commit 19faa2b9bb
2 changed files with 4 additions and 0 deletions

View File

@ -439,6 +439,8 @@ namespace osu.Game.Rulesets.Objects.Drawables
private void clearExistingStateTransforms()
{
base.ApplyTransformsAt(double.MinValue, true);
// has to call this method directly (not ClearTransforms) to bypass the local ClearTransformsAfter override.
base.ClearTransformsAfter(double.MinValue, true);
}