44 lines
1.4 KiB
C#
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 struct FCM_EnvelopeData {
|
|
[DNAFieldAttribute(0, "float", "min", "float", 4, false)]
|
|
public float min;
|
|
[DNAFieldAttribute(1, "float", "max", "float", 4, false)]
|
|
public float max;
|
|
[DNAFieldAttribute(2, "float", "time", "float", 4, false)]
|
|
public float time;
|
|
[DNAFieldAttribute(3, "short", "f1", "short", 2, false)]
|
|
public short f1;
|
|
[DNAFieldAttribute(4, "short", "f2", "short", 2, false)]
|
|
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;
|
|
}
|
|
}
|
|
}
|