Catmull-Rom Spline Point
PureCatmullRomSplinePointEvaluates a Catmull-Rom spline at parameter T using four control points. The curve passes through P1 and P2.
Type: Pure (no side effects)
Category: Fortuna|Vector & Transform
Keywords: vector & transform
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| P0 | FVector | — | P0 parameter |
| P1 | FVector | — | P1 parameter |
| P2 | FVector | — | P2 parameter |
| P3 | FVector | — | P3 parameter |
| T | float 0-1 | — | T parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | FVector | ReturnValue output |
Example Use Cases
Example 1
Smooth AI patrol path through waypoints.
Example 2
Camera rail that passes through exact positions.