mirror of
https://github.com/4sval/FModel.git
synced 2026-04-24 23:10:44 -05:00
14 lines
366 B
C#
14 lines
366 B
C#
namespace PakReader.Parsers.Objects
|
|
{
|
|
public readonly struct FFloatCurve : IUStruct
|
|
{
|
|
/** Curve data for float. */
|
|
public readonly FRichCurveKey[] FloatCurve; // actually FRichCurve
|
|
|
|
internal FFloatCurve(PackageReader reader)
|
|
{
|
|
FloatCurve = reader.ReadTArray(() => new FRichCurveKey(reader));
|
|
}
|
|
}
|
|
}
|