Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,23 +15,23 @@ namespace BlendFile.DNA {
[DNAClassAttribute(618, "NodeChroma", 44)]
public struct NodeChroma {
[DNAFieldAttribute(0, "float", "t1", "float", 4, false)]
[DNAFieldAttribute(0, "float", "t1", "float", 4, false, 0)]
public float t1;
[DNAFieldAttribute(1, "float", "t2", "float", 4, false)]
[DNAFieldAttribute(1, "float", "t2", "float", 4, false, 4)]
public float t2;
[DNAFieldAttribute(2, "float", "t3", "float", 4, false)]
[DNAFieldAttribute(2, "float", "t3", "float", 4, false, 8)]
public float t3;
[DNAFieldAttribute(3, "float", "fsize", "float", 4, false)]
[DNAFieldAttribute(3, "float", "fsize", "float", 4, false, 12)]
public float fsize;
[DNAFieldAttribute(4, "float", "fstrength", "float", 4, false)]
[DNAFieldAttribute(4, "float", "fstrength", "float", 4, false, 16)]
public float fstrength;
[DNAFieldAttribute(5, "float", "falpha", "float", 4, false)]
[DNAFieldAttribute(5, "float", "falpha", "float", 4, false, 20)]
public float falpha;
[DNAFieldAttribute(6, "float", "key[4]", "System.Single[]", 16, false)]
[DNAFieldAttribute(6, "float", "key[4]", "System.Single[]", 16, false, 24)]
public float[] key = new System.Single[4];
[DNAFieldAttribute(7, "short", "algorithm", "short", 2, false)]
[DNAFieldAttribute(7, "short", "algorithm", "short", 2, false, 40)]
public short algorithm;
[DNAFieldAttribute(8, "short", "channel", "short", 2, false)]
[DNAFieldAttribute(8, "short", "channel", "short", 2, false, 42)]
public short channel;
public NodeChroma() {
this.t1 = default;