19 lines
507 B
C#
19 lines
507 B
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public struct FCM_EnvelopeData {
|
|
public float min;
|
|
public float max;
|
|
public float time;
|
|
public short f1;
|
|
public short f2;
|
|
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;
|
|
}
|
|
}
|
|
}
|