Construct Float Curve
Last updated
Last updated
Creates a float curve by combining segment points and control points. It builds a mathematical curve representation that can be used for animations, transitions, or interpolations.
segments
The anchor points that define the curve path
List
Yes
controlPoints
The handles that control the curve's shape
List
Yes
curve
The constructed float curve object
Float Curve
Drag the Construct Float Curve node into your graph.
Connect an array of Vec2 points to the "segments" input (these are the anchor points).
Connect an array of Vec2 control point pairs to the "controlPoints" input.
The node outputs a complete float curve that can be used with other curve nodes.
You must have exactly one more segment than control point pairs for a valid curve.
Each segment is a [x,y] coordinate, and each control point is a pair of [x,y] coordinates.
Deconstruct Float Curve: For breaking a float curve into its component parts.
Sample Float Curve: For evaluating a float curve at specific points.
Custom Easing Functions: Create precise animation timing curves for transitions.
Data Visualization: Build custom curves for representing complex data relationships.
Path Generation: Define smooth paths for design elements to follow.