GUIS positions changing for different devices

My GUIS positions are messed up. I have changed their size & position to scale and NOT offset. I have also changed their anchor point to 0.5, 0.5. I have also added UIAspectRatioConstraint’s into every GUI element. And UITextSizeConstraint’s for TextLabels. For some reason the positions of the GUIS are still messed up despite doing all of the above. Below is a picture attached of the properties of one of the GUI elements.

Below are pictures of the issue on MULTIPLE devices.

Meta Quest 2/3 (THE text’s position is messed up as well as the Welcome To text)

iPhone 7 (THE text’s position is messed up)

what → -> → i ← <- ← do is:

for objects that are supposed to be put together (ex. a health bar with a heart image next to it), i parent them all under one transparent frame. then i would add a UIAspectRatioConstraint (setting ratio using a plugin or math!!!) to the frame.

also for the bolded THE, you don’t need a separate label, you should look into RichText

1 Like

Thank you so much for the help! I will try it out soon. I never knew what RichText was used for but now I understand. Thank you so much!

1 Like

Thanks so much for the help! It worked, I just tried it now. The text is now fixed. However the UIApsectRatioConstraint in one big frame didn’t seem to work for me.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.