Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm making a game with a health bar and I am trying to make a health bar that is curved.

Currently I have a lineBar that has 20 segments that looks like this at the bottom left of the screen.

What I'd like to do is write a function that goes through and modifies the scaleY of each to get a curved bar.

I can easily scale them down in a straight line. So that it looks triangle ish.

I want exponential decay.

In normal math terms it might be something like y = Pa^x.

share|improve this question
2  
Cool! And what is your specific programming question? – paislee Feb 21 '12 at 23:10
Could you play one of my flash games here and tell me if this is the style of health bar you're trying to create? – Marty Wallace Feb 21 '12 at 23:51
Not really an answer but it seems to me, in the interest of saving effort while achieving a nice aesthetic effect, it might be easier to just use partial images. You can show X% of the "full health" from the left and Y% of the empty health image from the right, or any number of variations on that approach.. – Brian Lacy Feb 22 '12 at 0:05

1 Answer

I developed a game with a curved health bar a while back, this is how I achieved it:

Step 1:

Create your curved bar. I suggest the Oval Primitive tool:

enter image description here

Draw your bar. I suggest creating a guide layer to demonstrate a whole-circle visual of your curved segment. Copy the bar onto another layer and make it a mask, this will be what reveals your healthbar. The mask and the segment should be MovieClips:

enter image description here


Step 2:

Set the registration point of your mask to the centre of your guide circle. Your mask will rotate around this point to reveal your actual bar. Rotate your mask so that it is to the left of your actual bar graphic:

enter image description here


Step 3:

Create a tween of your mask rotating clockwise across 100 frames (add more frames for finer progression). You can even apply a tween to your bar graphics where the colour changes from red to green as it fills, etc.

enter image description here


Step 4:

Use gotoAndStop() on this element to determine which frame you should stop on throughout the animation. The formula I use here is generally:

gotoAndStop( Math.round( currentHealth / maxHealth * x ) );

Where x is the amount of frames you created.

Hope this helps.

share|improve this answer
thanks i may use this some time. I ended up using line segments. First i made a base linebar that you can pass the art of 1 segment, # of segments and spacing for the segments. And i gave it a function for curving using this equation to get a decent curve. – Timothy Mayes Mar 19 '12 at 8:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.