Class ChoreoCurveData
Namespace: ValveResourceFormat.ResourceTypes.Choreo
Assembly: ValveResourceFormat.dll
Represents curve data in a choreography scene.
csharp
public class ChoreoCurveDataInheritance
Constructors
ChoreoCurveData(ChoreoSample[], ChoreoEdge?, ChoreoEdge?)
Initializes a new instance of the class.
csharp
public ChoreoCurveData(ChoreoSample[] samples, ChoreoEdge? leftEdge, ChoreoEdge? rightEdge)Parameters
samples ChoreoSample[]
The samples in this curve.
leftEdge ChoreoEdge?
The left edge of the curve.
rightEdge ChoreoEdge?
The right edge of the curve.
Properties
LeftEdge
Gets the left edge of the curve.
csharp
public ChoreoEdge? LeftEdge { get; }Property Value
RightEdge
Gets the right edge of the curve.
csharp
public ChoreoEdge? RightEdge { get; }Property Value
Samples
Gets the samples in this curve.
csharp
public ChoreoSample[] Samples { get; }Property Value
Methods
ToKeyValues()
Converts this curve data to a .
csharp
public KVObject ToKeyValues()Returns
A representing this curve data.

