Fix inflation amount being added to the box #25168
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Resolving #25049
Bug that's occurring in the current 'master' branch of osu:

After my fix:

Hotreload:
'hotreload gif'
My thought process:
Based on my understanding of the intended behavior, we want the pink box to be inflated by a constant value of
SkinSelectionHandler.INFLATE_SIZE
. However, it seems the amount of inflation increases as we scale the element to a larger size.In my attempt to address this issue, I initially tried to look for a way to perform the inflation operation in screen space rather than local space (as @bdach suggested). However, I encountered a problem: the
inflate
function only works forRectangleF
(andRectangleI
) class objects. After converting the rectangle to a Quad usingToScreenSpace
, there are noToSpace
operation in Drawable that can convert it back to a rectangle.I decided to take a different approach by using rotation matrix after offsetting the initial position by
SkinSelectionHandler.INFLATE_SIZE
. This approach helps us obtain the newbox.position
value.With my current code, the pink box is slightly larger than the element by a small, constant value and it doesn't get relatively larger when scaled. In my eyes, this is an appropriate fix to meet the intended behavior.
Let me know if there are any issues with my approach to solving this problem.