Updated LERP.md (markdown)
commited
commit
4a021c4ffadff896ed52c1d75eb68947362da9d4
... | ... | @@ -3,6 +3,7 @@ Linear Interpolation (LERP) returns a value between two others at a point of lin |
3 | 3 | The formula for the LERP output is: |
4 | 4 | From + (To - From) × Amount |
5 | 5 | |
6 | [[uploads/LERP.png]] |
|
6 | 7 | |
7 | 8 | Input: |
8 | 9 | - From: The value to transition from. |
... | ... | @@ -10,9 +11,7 @@ Input: |
10 | 11 | - Amount: How far to transition. |
11 | 12 | |
12 | 13 | Output: |
13 | - Rotation: |
|
14 | ||
15 | [[/uploads/Lerp.png]] |
|
14 | - Rotation: The value between the From and To input, at a linear scale (defined by Amount input). |
|
16 | 15 | |
17 | 16 | ## Example |
18 | 17 |