32 lines
973 B
C#
32 lines
973 B
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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class FMod_Envelope {
|
|
public FCM_EnvelopeData ptr_data;
|
|
public int totvert;
|
|
public float midval;
|
|
public float min;
|
|
public float max;
|
|
public FMod_Envelope(FCM_EnvelopeData ptr_data, int totvert, float midval, float min, float max) {
|
|
this.ptr_data = ptr_data;
|
|
this.totvert = totvert;
|
|
this.midval = midval;
|
|
this.min = min;
|
|
this.max = max;
|
|
}
|
|
}
|
|
}
|