Files
BlenderSharp/BlendFile/DNA/FCM_EnvelopeData.cs
2025-03-04 18:48:04 +01:00

44 lines
1.4 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(83, "FCM_EnvelopeData", 16)]
public class FCM_EnvelopeData {
[DNAFieldAttribute(4, "float", 0, "min", "float", false, 0)]
public float min;
[DNAFieldAttribute(4, "float", 1, "max", "float", false, 4)]
public float max;
[DNAFieldAttribute(4, "float", 2, "time", "float", false, 8)]
public float time;
[DNAFieldAttribute(2, "short", 3, "f1", "short", false, 12)]
public short f1;
[DNAFieldAttribute(2, "short", 4, "f2", "short", false, 14)]
public short f2;
public FCM_EnvelopeData() {
this.min = default;
this.max = default;
this.time = default;
this.f1 = default;
this.f2 = default;
}
public FCM_EnvelopeData(float min, float max, float time, short f1, short f2) {
this.min = min;
this.max = max;
this.time = time;
this.f1 = f1;
this.f2 = f2;
}
}
}