ProtoFlux:Value Lerp Unclamped: Difference between revisions

From Resonite Wiki
This is a stub
Filled in this node page.
Line 5: Line 5:
[
[
{"Name":"From", "Type":"Dummy"},
{"Name":"From", "Type":"Dummy"},
{"Name": "To", "Type": "Dummy"},
{"Name":"To", "Type": "Dummy"},
{"Name": "Lerp", "Type": "float"}
{"Name":"Lerp", "Type": "float"}
]
]
|Outputs=
|Outputs=
Line 14: Line 14:
|}}
|}}


{{Stub}}
The '''Value Lerp Unclamped''' node takes in a starting point and an ending point along with a lerp value of which it lerps linearly towards, then returns the value over time.
 
This is unclamped meaning that you are not stuck with being in between <code>0</code> and <code>1</code>.
 
== Inputs ==
 
=== From (Pseudo-Generic) ===
 
The starting point of this lerp.
 
=== To (Pseudo-Generic) ===
 
The ending point of this lerp.
 
=== Lerp ([[Type:float|float]]) ===
 
The lerp value between the start and end points.
 
== Outputs ==
 
=== * (Pseudo-Generic) ===
 
Returns the value currently being lerped.


[[Category:ProtoFlux:Math:Interpolation]]
[[Category:ProtoFlux:Math:Interpolation]]

Revision as of 13:17, 2 July 2024

Lerp (Unclamped)
From
*
To
Lerp
Interpolation

The Value Lerp Unclamped node takes in a starting point and an ending point along with a lerp value of which it lerps linearly towards, then returns the value over time.

This is unclamped meaning that you are not stuck with being in between 0 and 1.

Inputs

From (Pseudo-Generic)

The starting point of this lerp.

To (Pseudo-Generic)

The ending point of this lerp.

Lerp (float)

The lerp value between the start and end points.

Outputs

* (Pseudo-Generic)

Returns the value currently being lerped.