Godot Version
4.2.1
Question
I’m making a first-person player controller, and I’m stuck making my HUD UI match up with the world. My player has a TextureRect for a reticle (imagine a circular shotgun spread indicator, or some sort of “targeting area” in the middle of the screen). I’m able to have this scale with the screen size no problem by placing it in a container and using Stretch Mode viewport + Stretch Aspect expand in the project settings.
However, this means that making the window narrower will cause the reticle to shrink and no longer represent the same area in the world. This is a problem, since it needs to be accurate for the game’s mechanics to make sense.
Notably, this doesn’t seem to be a problem when making the window taller (i.e. changing height instead of width), since the view zooms in instead of extending and the proportions are maintained. I suppose this means the core of the problem is making the reticle scale only with screen height and not width? Although I’m not quite certain…
Any insights would be appreciated!