But when you have to write tons of events, it would be so nice to have charts you can quickly reference to. Here on the forum, or even better inside C2.
Something like this:
lerp to an angle, use this:
lerp to a position, use this:
lerp to speed, use this:
lerip to scale, use this:
lerp to variable value, use this:
every tick events: don't use if this and this. Use if this and this.
every X second: don't use.
If you're rotating, moving, accelerating or basically anything else, the answer is just add s * dt. "Every X seconds" is already framerate independent because it measures time, not frames, but people often get confused about it so the original delta-time tutorial specifically covers it.
Lerp is kind of a special case so I added it to the tutorial. I think that basically covers everything?