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,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(623, "NodeDefocus", 32)]
public struct NodeDefocus {
[DNAFieldAttribute(0, "char", "bktype", "char", 1, false)]
[DNAFieldAttribute(0, "char", "bktype", "char", 1, false, 0)]
public char bktype;
[DNAFieldAttribute(1, "char", "_pad0", "char", 1, false)]
[DNAFieldAttribute(1, "char", "_pad0", "char", 1, false, 1)]
public char _pad0;
[DNAFieldAttribute(2, "char", "preview", "char", 1, false)]
[DNAFieldAttribute(2, "char", "preview", "char", 1, false, 2)]
public char preview;
[DNAFieldAttribute(3, "char", "gamco", "char", 1, false)]
[DNAFieldAttribute(3, "char", "gamco", "char", 1, false, 3)]
public char gamco;
[DNAFieldAttribute(4, "short", "samples", "short", 2, false)]
[DNAFieldAttribute(4, "short", "samples", "short", 2, false, 4)]
public short samples;
[DNAFieldAttribute(5, "short", "no_zbuf", "short", 2, false)]
[DNAFieldAttribute(5, "short", "no_zbuf", "short", 2, false, 6)]
public short no_zbuf;
[DNAFieldAttribute(6, "float", "fstop", "float", 4, false)]
[DNAFieldAttribute(6, "float", "fstop", "float", 4, false, 8)]
public float fstop;
[DNAFieldAttribute(7, "float", "maxblur", "float", 4, false)]
[DNAFieldAttribute(7, "float", "maxblur", "float", 4, false, 12)]
public float maxblur;
[DNAFieldAttribute(8, "float", "bthresh", "float", 4, false)]
[DNAFieldAttribute(8, "float", "bthresh", "float", 4, false, 16)]
public float bthresh;
[DNAFieldAttribute(9, "float", "scale", "float", 4, false)]
[DNAFieldAttribute(9, "float", "scale", "float", 4, false, 20)]
public float scale;
[DNAFieldAttribute(10, "float", "rotation", "float", 4, false)]
[DNAFieldAttribute(10, "float", "rotation", "float", 4, false, 24)]
public float rotation;
[DNAFieldAttribute(11, "char", "_pad1[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(11, "char", "_pad1[4]", "System.Char[]", 4, false, 28)]
public char[] _pad1 = new System.Char[4];
public NodeDefocus() {
this.bktype = default;