How do I make a child ignore it’s parent’s scale? (Meaning it maintains its size despite it’s parent’s) I know how to make it ignore rotation but not sure how to do it with scale. I’m doing a game jam so I need help fast! Thanks!
Set Top Level under Transform to True. This also makes it ignore parent rotation and position. If you need to have the parent rotation and position applied but not the scale, you can toggle it using $YourObject.top_level(bool) as needed.