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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct CBData {
[DNAFieldAttribute(0, "float", "r", 4)]
public float r;
[DNAFieldAttribute(1, "float", "g", 4)]
public float g;
[DNAFieldAttribute(2, "float", "b", 4)]
public float b;
[DNAFieldAttribute(3, "float", "a", 4)]
public float a;
[DNAFieldAttribute(4, "float", "pos", 4)]
public float pos;
[DNAFieldAttribute(5, "int", "cur", 4)]
public int cur;
public CBData(float r, float g, float b, float a, float pos, int cur) {
this.r = r;