A HUD (Heads-Up Display) is a critical part of most games—it provides players with essential real-time information without interrupting gameplay.
Examples of HUDs include timers, health / xp / stamina bars, quest objectives, ammo counters and shield status bars.
This tutorial walks you through building a simple HUD with a total score display.
Tap Hierarchy > Panel
In Properties, toggle on Use Content width and height
Tap Hierarchy > Horizontal layout
In Properties:
- toggle on Use Content width and height
- set the left, right, top and bottom margins
- set the spacing of the elements
This UI is built with nested elements: a panel contains a horizontal layout (for side-by-side positioning), which holds the image and text.
The panel is aligned to the top-left corner to ensure proper placement across devices. The horizontal layout is set to fill the panel, allowing access to margins on all sides. Note that the alignment settings affect the available margins. The Use content width/height option lets the panel and layout resize automatically based on content.
Both the UI and text field are named for easier identification, especially when working with multiple UIs.
Other edited properties include color, outline, and image/text size. You can adjust opacity too — e.g., the panel uses a semi-transparent Alpha 50 color.
The UI's look, position, and content can change during gameplay. Here, the value input of the text field was enabled so it can update as the player collects coins. Check the Inputs and Outputs menu in the Properties panel to explore what can be changed dynamically.
With just a few nodes and smart UI design, you can build clear and functional HUDs that elevate the player experience in your game. Try customizing colors, icons, and animations to fit your game's aesthetic!