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

@@ -33,6 +33,17 @@ namespace BlendFile.DNA {
public short algorithm;
[DNAFieldAttribute(8, "short", "channel", 2)]
public short channel;
public NodeChroma() {
this.t1 = default;
this.t2 = default;
this.t3 = default;
this.fsize = default;
this.fstrength = default;
this.falpha = default;
this.key = default;
this.algorithm = default;
this.channel = default;
}
public NodeChroma(float t1, float t2, float t3, float fsize, float fstrength, float falpha, float[] key, short algorithm, short channel) {
this.t1 = t1;
this.t2 = t2;