HUD, which stands for Heads-Up Display usually refers to some particular informations (like player's health or ammunition count) displayed in the computer game directly on the screen.
Questions tagged [hud]
162 questions
2
votes
1 answer
Trying to make Qt HUD in OSG, camera issue
I'm kind of newbie in both OSG and Qt, still I'm trying to make Qt HUD upon my OSG window, what I want is Qt interface elements fixed inside OSG scene, not spinning with the model. The thing is, I need Qt elements INSIDE osg scene, not OSG scene…

Kilazi
- 308
- 3
- 14
2
votes
2 answers
Why is my HUD not rendering in OpenGL?
I'm new to OpenGL, and I've been going through NeHe's tutorials and various other web sources, and I'm testing some things to render text as a HUD of sorts over everything else.
After a very long night, I can't get this to work and I can't find any…

Talen Herzig
- 162
- 1
- 9
1
vote
1 answer
Java3d: How to edit a drawn 2d overlay on a Java 3d scene?
I used the technique answered this question: Java3D: Painting 2D HUD over a Canvas3D
And my code is something like this:
...
GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
Canvas3D canvas3D = new…

James Andrew
- 7,197
- 14
- 46
- 62
1
vote
1 answer
XNA C# HUD SpriteFont
I added a SpriteFont to my HUD and this is what I get:
http://i557.photobucket.com/albums/ss13/KookehMonsters/Dev/Untitled-1.png
All those white spots are from my camera panning and the text following along.
What's going on?
Label…

KeyHeart
- 163
- 2
- 6
- 17
1
vote
2 answers
Are there any guidelines for appropriate use of the Black HUD UI in OS X?
Does anyone know what the HIG are saying about the black HUD UI in OS X?

Henrik
- 2,421
- 4
- 25
- 33
1
vote
1 answer
How to show HUD with custom UIView using SwiftUI?
I have looked into HUDContentType and still here is no the case to supports SwiftUI implementation.
How to show SwiftUI View inside PKHUD/HUD?

Ramis
- 13,985
- 7
- 81
- 100
1
vote
3 answers
Scroll VIew and MBProgressHUD
I am new to iphone development. What i have done here is, loading a view with a scroll view on which I m showing pictures.
I have got a basic navigation controller in the app..
Now, during the loading of picture if the picture is not fully loaded i…

Hadi
- 1,212
- 2
- 17
- 31
1
vote
1 answer
Switching Ortho to perspective for OpenGL HUD
I'm trying to implement a HUD in OpenGL which will display text in 2D on the front of the viewing window and a 3D perspective view behind (similar to a HUD).
I'm creating my 3D fragments using a projectionView matrix then switch to an ortho matrix…

Alistair Haslam
- 21
- 3
1
vote
1 answer
How to set transparency to HUD Window
I am using standard HUD window (Drag and drop from IB Library). But I don't see any control to set the transparency of this HUD window.
I also tried to customize NSPanel to create HUD window . But whatever the alpha value I set. It takes default…

Raviprakash
- 2,410
- 6
- 34
- 56
1
vote
0 answers
How to matching loading progress with JGProgressHUD
I want to ask how to matching loading with JGProgressHUD when you are waiting for a request or when is loading getting location info? The documentation is written in objective-c and I don't really understand objc.
thank you.

ferryawijayanto
- 569
- 4
- 18
1
vote
2 answers
Xcode4 "Build Finished" HUD
I'm searching for a library which implements something like Xcode 4's HUD which displays when a build is finished and such things.
Can someone give me a link or some hints how to implement it?
To clarify it, I'm searching for something like…

jsadfeew
- 2,247
- 1
- 18
- 25
1
vote
2 answers
How to show progress hud while compressing a file in Swift 4?
I'm using marmelroy/Zip framework to zip/unzip files in my project, and JGProgressHUD to show the progress of the operation.
I'm able to see the HUD if I try to show it from the ViewDidLoad method, but if I use it in the closure associated to the…

Salva
- 707
- 2
- 9
- 18
1
vote
1 answer
Have a 3d point move on HUD depending the direction of the camera
My problem is the following:
Imagine I'm in the (x, y, z) position and I have several points (xn, yn, zn) and depending on my view direction, assuming I have the angle values for vertical, horizontal and roll, I want my HUD to identify said points,…

Gonçalo
- 144
- 11
1
vote
1 answer
Python OpenGL - Issues displaying 2d graphics over a 3d scene
My goal is to display a static triangle over a rotated cube using PyOpenGL. However, I had no luck in achieving the result I wanted; instead, I am left with a blank screen. I had tested both the cube and triangle with their corresponding matrix…

Qubic Lens
- 145
- 1
- 9
1
vote
1 answer
iphone nsurlconnect, tableview and activity indicator
i've a method that perform a connection to retreive some data and popolate a tableview.
This method works great.
Now i'm launching this method in viewDidLoad with
[NSThread detachNewThreadSelector:@selector(connTre)
toTarget:self
withObject:nil]; …

zebra
- 435
- 2
- 8
- 20