public Tween SetProperty(ref float value, float time, float delay, float start, float end)
{
Action<float> lerp = (past) =>
{
value = Raymath.Lerp(start, end, past);
};
}
public Tween SetProperty(ref float value, float time, float delay, float start, float end)
{
Action<float> lerp = (past) =>
{
value = Raymath.Lerp(start, end, past);
};
}