I need a formula to position my health bar object as it scales down.
i got close but i just couldn't get it right.
i scale it down like so:
transform.localScale.x = (maxSize*HP)/maxHP;
Then on my next line i need to reposition it based on how much it just shrank. otherwise my healthbar would shrink from both ends, instead of shrinking to the left.
the closest iv gotten was with this formula:
transform.localPosition.x = noHP_X+(HP*(-noHP_X/maxHP));
noHP_X is the desired X location when health is 0.
and maxHP_X is the desired X location for when health is full. this variable isn't used though... might be apart of the problem. it seems like it should be in there i just dont know where.
its all good except for a small gap between the start of the health bar and its background, as the health goes down the gap slowly closes until zero HP, at which point its finaly in the right spot.
if anyone could help me correct my formula, or just show me a better way to do it that would be sweet.
↧