Okay so, I got an ImageLabel
right here.
The ImageLabel
’s AnchorPoint
is set to 0.5, 0.5
, and it has a UIAspectRatioConstraint
, and it also is sized and positioned using scaling.
Now, when I test it on other devices, it’s not positioned correctly.
As you can see, there’s a gap.
This even happens when I remove the Toolbox.
Before removing Toolbox:
After removing Toolbox:
I know that setting AnchorPoint
to 0,0
would fix the problem, but I want it to position correctly with AnchorPoint
being 0.5, 0.5
.
How can I fix this?