|
Hi there, I'm pretty new to Unity. I was trying to make a lifebar for my player with Unity's GUI through code in C#. The maximun life is 200 and the minimum 0. I've already got the damage sorted out practically, but I wanted to display it in a simple lifebar. I want to find a way to make a GUI bar in the top-left side of the screen that is represented as CurrentLife/TotalLife (TotalLife should be the max size, and should have to be another GUI as a background texture). There should be a string "LIFE" in the middle of the bar. Also, I want to make the bar and the string to shake when a bullet hits the player. If you could help me, I'd also like to make a label that shows how many enemies I have killed (I use the Destroy.GameObject thing) in the top right corner of the screen. And, as a player is killed, there should be a Points Label that increases by 20 everytime I kill an enemy (as in "SCORE: 0", I kill an enemy "SCORE: 20", another, "SCORE: 40"). And, to end this, I wanted to add an "ACCURACY" label under the above (as in ShotsThatHitAnEnemy/ShotsMade). If anyone could help me in any of this, It'd be much appreciated. Thanks in advance! :)
(comments are locked)
|
|
Okay, I've been coding a little bit and this is what I got
The Life Bar or Health Bar or whatever now works like wonders. I just got hurried up and made questions too soon, instead of searching before. I hope it helps anyone down the road.
(comments are locked)
|
|
Use GUI.Box instead. Define the lenght of the box using the amount of life left. You have to call the variables from your health script. You have to make assign your texture in the new style. For example: I hope this is helpfull.
(comments are locked)
|

For example, search 'health bar' (http://answers.unity3d.com/search?q=health+bar) and there are plenty of answers. For the rest of the gui elements, you simply need to store some variables in your gui script and update them as things change. Shaking the GUI is a little more complex and if you asked about that specifically in it's own question, I'd be glad to answer, but simply put, you'd change the positions of your GUI objects over a period of time.
Yeap, you are right. Thanks anyways.
The thing is, there is no much help in C#. And UnityAnswers search engine is not much of a friend for that matter.
Honestly, converting the js to C# is super easy. Mostly, you just have to move some keywords around. Check out this link if you're having difficulties bridging the gap (http://answers.unity3d.com/questions/5507/what-are-the-syntax-differences-in-c-and-javascript)