Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -29,6 +29,15 @@ namespace BlendFile.DNA {
public char[] _pad = new System.Char[1];
[DNAFieldAttribute(6, "CBData", "data[32]", 24)]
public CBData[] data = new CBData[32];
public ColorBand() {
this.tot = default;
this.cur = default;
this.ipotype = default;
this.ipotype_hue = default;
this.color_mode = default;
this._pad = default;
this.data = default;
}
public ColorBand(short tot, short cur, char ipotype, char ipotype_hue, char color_mode, char[] _pad, CBData[] data) {
this.tot = tot;
this.cur = cur;