I don't fully understand the way lerp works.
I'm doing this. Set size x = lerp(self.X,0,0.5) to get an object to disappear in time.
Now, if the object is big this works, otherwise it's almost the same as setting it to zero.
Now, for example, lerp(40,0,0.5) means that every tick the size goes from 40 to 0 in steps of (40*0.5=20) So basically two ticks to go from 40 to 0?
Now a tick is not completely reliable, the way I understand If I have 1000 events a tick will last more than say 2 events, am I correct? Is there any way to control this, for instance, do each step every X seconds?
Thank you