Questions tagged [hud]
The hud tag has no summary.
34 questions
0 votes
1 answer
136 views
How to implement an auto scaling feature for an HUD?
I have a question about UI scaling for a game. I'm using as engine Zandronum (zdoom based) and his ACS scripts to draw an HUD, I've wrote a simple library to make drawing easier and implemented a user ...
0 votes
0 answers
93 views
Add a controls instruction overlay to game HUD
I was wondering how I could make an instruction panel for the users of my game in Unity. I will add a photo to this post that shows an instruction panel. Any explanations would be much appreciated!
0 votes
1 answer
675 views
Problem with progress bar visibility
I have a code with several elements. One of these elements I would like you to initiate hidden. So I did, set for the progress bar to start hidden. It started to go wrong when and I was calling its ...
0 votes
1 answer
3k views
libgdx - creating static HUD/widgets on screen
I'm having problems with creating static HUD/buttons on the game screen. Currently my game has a character moving on the tiled map, with OrthographicCamera put on, everything works fine. I wanted to ...
36 votes
9 answers
35k views
What is the difference between a HUD and a GUI in a game?
Does anyone know the difference between a graphical HUD (head-up display) and a GUI (graphical user interface) in a game? Is a HUD part of the GUI and just displaying information? That would mean that ...
1 vote
1 answer
556 views
2D HUD overlay drawing based on 3D coordinates and camera azimuth and elevation
Assume you have the 3d coordinates of the player and another unit N as well as the azimuth and elevation of a camera always looking at the player. In the following ...
1 vote
1 answer
621 views
How to draw HUD in DirectX12?
I would like to draw reference frame to see how my camera moves around scene. I want these arrows to always be on the top of other geometry. How can I achieve it? I think I need to disable depth test ...
2 votes
1 answer
2k views
How do I render a 2D overlay with DirectX 9?
I'm working in C++ with DirectX 9 on a 3D game, but I want a 2D overlay for rendering a HUD. I've heard that I could use D3DXMatrixOrthoLH, but I'm very confused ...