Tweening

2015-04-18

Tweening probably has many definitions. I heard one guy call it mapping as in mapping one range to another range. I've always called that lerping. The simplest lerp is something like

     value = start + (end - start) * lerp

Then given lerp goes from 0 to 1 value will go from start to end.

(more...)
Comments