Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,12 +11,18 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
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;