Files
BlenderSharp/BlendFile/DNA/FCM_EnvelopeData.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

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