Trying to lerp image fill amount from this script.
public class ProgressBar : MonoBehaviour
{
public static int minimum;
public static int maximum;
public static int current;
public Image mask;
void Update()
{
GetCurrentFill();
}
void GetCurrentFill()
{
float currentOffset = current - minimum;
float maximumOffset = maximum - minimum;
float fillAmount = currentOffset / maximumOffset;
mask.fillAmount = fillAmount;
}
}
i'm going to explain this code :
Current = current value, minimum = minimum experience to level up, maximum = maximum experience to level up
if(skortotal < 20)
{
playerlevel = 1;
ProgressBar.minimum = 0;
ProgressBar.current = skortotal;
ProgressBar.maximum = 20;
}
if(skortotal >= 20)
{
playerlevel = 2;
ProgressBar.current = skortotal;
ProgressBar.maximum = 50;
ProgressBar.minimum = 20;
}
}
the code already work but i don't know how to make it work using lerp
You asked how to achieve this using Mathf.Lerp, here is my suggestion:
Lerp will automatically clamp the values, so the result is always inside of [0..1].
To animate the fill over time you can try this:
To start the animation, do this when you change the actualValue: