- Home /
can someone help me with my hud?
Well Hello again, quick question, how would I go about putting a hud I made into my game? its not going to interactive itself, just decorative really. (meaning the buttons for things will be put on top of the actual hud)I have no idea where to start. any one help?
Answer by rutter · Mar 16, 2012 at 07:44 PM
You could use Unity's GUI
or GUILayout
classes to draw a HUD from some OnGUI()
functions.
Another solution is to create a second camera in your scene, probably an orthographic camera, which only renders a specific layer of objects. You can then use a mix of textured planes, text meshes, and so on to sort of "fake" a HUD.
Your answer
Follow this Question
Related Questions
Multiple Cars not working 1 Answer
UnityEngine.Input.GetMouseButton(1)) issue 1 Answer
What is a 2D Array? 3 Answers
My unit won't stop moving (RTS) 0 Answers
RTS unit movement 1 Answer