Struct PathParticleRopeNode ​
Namespace: ValveResourceFormat.Utils
Assembly: ValveResourceFormat.dll
A single node of a path_particle_rope spline: a position plus the incoming and outgoing cubic tangent handles authored in Hammer. The spline segment between node i and node i+1 is the cubic Bezier with control points (pos_i, pos_i + OutTangent_i, pos_{i+1} + InTangent_{i+1}, pos_{i+1}).
csharp
public readonly struct PathParticleRopeNodeProperties ​
InTangent ​
Incoming tangent handle (relative offset from ).
csharp
public Vector3 InTangent { get; init; }Property Value ​
OutTangent ​
Outgoing tangent handle (relative offset from ).
csharp
public Vector3 OutTangent { get; init; }Property Value ​
Position ​
Origin-relative node position.
csharp
public Vector3 Position { get; init; }
