Questions tagged [hud]

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.

162 questions
1
vote
2 answers

Stacking partly transparent font textures is broken by changing render order

I am fairly new to OpenGL and trying to reinvent the wheel (for fun) by creating my own simple game engine and now I'm trying to make a HUD with text. To do so, I am programmatically generating font texture maps for the fragment shader to use to…
JeneralJames
  • 314
  • 1
  • 3
  • 10
1
vote
2 answers

Is there a simple open source HUD (similar to MBProgressHUD) that I can use on IPhone?

I don't want to use MBProgressHUD because of the overhead for threads and managing background asks. I don't need a background task handler. Just a simple, thread safe library that deals with views/windows should do the job. Also without creating an…
1
vote
0 answers

How to Create a Cool In-depth effect for an HUD

The picture below Is a perfect example of what im trying to do with my SKScene or SKNodes either or will satify me. Ok So my first attemped at this was basicly trying to rotate the SKNode on my SKOverlayScene on the Y axis so that It can have…
Hunter
  • 39
  • 5
1
vote
3 answers

SpriteKit static HUD with camera on player

My issue is the HUD isn't staying in the same position but moving with the camera also. I'm trying to create a version of Sokoban using swift_boxxle code found on Github, I've added a new SKNode called mazeWorld, a camera node and a HUD node. var…
Alex Hedley
  • 776
  • 10
  • 24
1
vote
0 answers

Swift Post request hud,loader is not stop after get a response

In Swift i am using post method as a multipart image upload, The Problem is in post method when i get response then i want to stop loader but its not happen i means to say loader is not stop , I am using BProgressHUD else every where is working…
1
vote
0 answers

KVNProgress not working under UIPageViewController

Here is my code under viewDidLoad method of a single ViewController as a child of my PageViewController. - (void)viewDidLoad { [super viewDidLoad]; [KVNProgress showWithStatus:@"Loading"]; // Not shown on child vc, see attached screen…
Sajib Ghosh
  • 410
  • 1
  • 6
  • 17
1
vote
0 answers

On-screen text/OSD without background (transparent)

I am trying to display text (actually wingding characters once I get past this problem) on top of all other desktop windows (similar to a HUD or OSD). The following is a test which takes the text that gets passed via command line and displays it…
PiEnthusiast
  • 314
  • 1
  • 4
  • 19
1
vote
2 answers

Input Letter in rectangle drawing ios

I'm drawing three rectangles in order to show the loading, however I want to input Alphabets in those rectangles, how can I put letters in that. My Function: - (void)configUI { self.backgroundColor = [UIColor clearColor]; UIView *rect1 =…
developer
  • 668
  • 1
  • 6
  • 24
1
vote
0 answers

SVProgressHUD not appearing on my webView prior to loading

I have the following on the following delegate - (void)webViewDidStartLoad:(UIWebView *)webView { [SVProgressHUD show]; } But this is not doing anything, its not showing the HUD at all. Not before loading, during or after. What am I doing…
vzm
  • 2,440
  • 6
  • 28
  • 47
1
vote
1 answer

OSG osg::MatrixTransform

I am trying to draw a compass within Head Up Display(HUD) in my application. I have successfully rendered the compass within the scene as a textured geometry. The question is when I try to rotate the compass using osg::MatrixTransfrom and…
ahmedsoubky
  • 13
  • 1
  • 5
1
vote
1 answer

Tracking objects in a 3D environment with 2D HUD icons

I am attempting to have a 2D HUD which has icons that track the location on the screen of 3D objects behind the HUD in a 3D environment. Reasoning: Sometimes you cannot see a 3D object (too far away or off screen) but you still want to know where it…
MichaelMitchell
  • 1,069
  • 2
  • 13
  • 38
1
vote
1 answer

Andengine HUD OnscreenController

Can anyone please tel me how to make a Analog onscreencontroller follow the screen? I used the code to make it a HUD but the knob doesn't respond to my touch,please help!
1
vote
3 answers

AlertView? Alert? What is it?

I've seen some cool looking "windows" / "alerts" /whatever they are called. I wish I knew. Here's some examples of them: These shouldn't be Apple exclusive, since I've seen 3rd party apps use them! I'd like to know what are these windows?
JomanJi
  • 1,407
  • 1
  • 17
  • 27
1
vote
0 answers

MBProgress HUD with Google calendar

hello guys i'm trying to show mbprogress during my app download google calendars event but i have a problem...if i add mbprogress i can't download events... here my code: - (void)viewDidLoad { [super viewDidLoad]; …
1
vote
0 answers

Joystick in HUD layer

I want to give the image a joystick to HUD. The HUD file I have:   myJoystick = [CCJoyStick initWithBallRadius: 25 MoveAreaRadius: 65 isFollowTouch: NO isCanVisible: YES isAutoHide: NO hasAnimation: YES];          [myJoystick setBallTexture: @…