Godot Version
4.3
Question
I’m coming from Unity, and I’m used to adjusting the orthographic camera size so that the player can only see their surroundings instead of the whole world. This has no affect on the UI in Unity, and you can still get nice crisp labels without having to worry about them getting blurry. However, in Godot, the camera zoom does affect the UI which I just recently found out.
I’ve realized for overlay UI items, such as menus, I can use CanvasLayer to make them independent from the camera. However, I’m trying to figure out how to have in-game UI, such as interaction labels or health bars. When I set my CanvasLayer node to follow the viewport, these in-game labels and UI become blurry and I don’t understand what I’m doing wrong or how to fix it. I’ve spent a bunch of time searching Google and asking questions in Discord but so far no one seems to know how to fix it. PLEASE HELP. How can I make my in-game UI elements not be affected by camera zoom level? OR is camera zoom level not the proper property I should be changing to limit the player’s view?
Follow Viewport Disabled. “Testing” label is an overlay but is not blurry (note font size is increased in this picture)
Follow Viewport Enabled. “Testing” label is following the viewport and is now blurry.
I hope I added enough information to this post. If not, let me know and I’ll add more to better explain. Thank you in advance for any advice and help!