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,33 +15,33 @@ namespace BlendFile.DNA {
[DNAClassAttribute(249, "FreestyleLineSet", 128)]
public class FreestyleLineSet {
[DNAFieldAttribute(0, "FreestyleLineSet", "*next", "FreestyleLineSet", 8, true)]
[DNAFieldAttribute(0, "FreestyleLineSet", "*next", "FreestyleLineSet", 8, true, 0)]
public FreestyleLineSet ptr_next;
[DNAFieldAttribute(1, "FreestyleLineSet", "*prev", "FreestyleLineSet", 8, true)]
[DNAFieldAttribute(1, "FreestyleLineSet", "*prev", "FreestyleLineSet", 8, true, 8)]
public FreestyleLineSet ptr_prev;
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false, 16)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(3, "int", "flags", "int", 4, false)]
[DNAFieldAttribute(3, "int", "flags", "int", 4, false, 80)]
public int flags;
[DNAFieldAttribute(4, "int", "selection", "int", 4, false)]
[DNAFieldAttribute(4, "int", "selection", "int", 4, false, 84)]
public int selection;
[DNAFieldAttribute(5, "short", "qi", "short", 2, false)]
[DNAFieldAttribute(5, "short", "qi", "short", 2, false, 88)]
public short qi;
[DNAFieldAttribute(6, "char", "_pad1[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(6, "char", "_pad1[2]", "System.Char[]", 2, false, 90)]
public char[] _pad1 = new System.Char[2];
[DNAFieldAttribute(7, "int", "qi_start", "int", 4, false)]
[DNAFieldAttribute(7, "int", "qi_start", "int", 4, false, 92)]
public int qi_start;
[DNAFieldAttribute(8, "int", "qi_end", "int", 4, false)]
[DNAFieldAttribute(8, "int", "qi_end", "int", 4, false, 96)]
public int qi_end;
[DNAFieldAttribute(9, "int", "edge_types", "int", 4, false)]
[DNAFieldAttribute(9, "int", "edge_types", "int", 4, false, 100)]
public int edge_types;
[DNAFieldAttribute(10, "int", "exclude_edge_types", "int", 4, false)]
[DNAFieldAttribute(10, "int", "exclude_edge_types", "int", 4, false, 104)]
public int exclude_edge_types;
[DNAFieldAttribute(11, "char", "_pad2[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(11, "char", "_pad2[4]", "System.Char[]", 4, false, 108)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(12, "Collection", "*group", "Collection", 8, true)]
[DNAFieldAttribute(12, "Collection", "*group", "Collection", 8, true, 112)]
public Collection ptr_group;
[DNAFieldAttribute(13, "FreestyleLineStyle", "*linestyle", "FreestyleLineStyle", 8, true)]
[DNAFieldAttribute(13, "FreestyleLineStyle", "*linestyle", "FreestyleLineStyle", 8, true, 120)]
public FreestyleLineStyle ptr_linestyle;
public FreestyleLineSet() {
this.ptr_next = default;