Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

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