lerp
Calculates a number between two numbers at a specific increment
lerp(
start,
stop,
amount
)
Calculates a number between two numbers at a specific increment
Syntaxe
lerp(start=0, stop=100, amount=0.5);
Arguments
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
start | yes | - | ||
stop | yes | - | ||
amount | yes | - | Interpolation amount between 0 and 1 |