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,27 +15,27 @@ namespace BlendFile.DNA {
[DNAClassAttribute(961, "SpaceUserPref", 112)]
public class SpaceUserPref {
[DNAFieldAttribute(0, "SpaceLink", "*next", "SpaceLink", 8, true, 0)]
public SpaceLink ptr_next;
[DNAFieldAttribute(1, "SpaceLink", "*prev", "SpaceLink", 8, true, 8)]
public SpaceLink ptr_prev;
[DNAFieldAttribute(2, "ListBase", "regionbase", "ListBase", 16, false, 16)]
[DNAFieldAttribute(8, "SpaceLink", 0, "*next", "SpaceLink", true, 0)]
public SpaceLink next;
[DNAFieldAttribute(8, "SpaceLink", 1, "*prev", "SpaceLink", true, 8)]
public SpaceLink prev;
[DNAFieldAttribute(16, "ListBase", 2, "regionbase", "ListBase", false, 16)]
public ListBase regionbase;
[DNAFieldAttribute(3, "char", "spacetype", "char", 1, false, 32)]
[DNAFieldAttribute(1, "char", 3, "spacetype", "char", false, 32)]
public char spacetype;
[DNAFieldAttribute(4, "char", "link_flag", "char", 1, false, 33)]
[DNAFieldAttribute(1, "char", 4, "link_flag", "char", false, 33)]
public char link_flag;
[DNAFieldAttribute(5, "char", "_pad0[6]", "System.Char[]", 6, false, 34)]
[DNAFieldAttribute(6, "char", 5, "_pad0[6]", "System.Char[]", false, 34)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(6, "char", "_pad1[7]", "System.Char[]", 7, false, 40)]
[DNAFieldAttribute(7, "char", 6, "_pad1[7]", "System.Char[]", false, 40)]
public char[] _pad1 = new System.Char[7];
[DNAFieldAttribute(7, "char", "filter_type", "char", 1, false, 47)]
[DNAFieldAttribute(1, "char", 7, "filter_type", "char", false, 47)]
public char filter_type;
[DNAFieldAttribute(8, "char", "filter[64]", "System.Char[]", 64, false, 48)]
[DNAFieldAttribute(64, "char", 8, "filter[64]", "System.Char[]", false, 48)]
public char[] filter = new System.Char[64];
public SpaceUserPref() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.regionbase = default;
this.spacetype = default;
this.link_flag = default;
@@ -44,9 +44,9 @@ namespace BlendFile.DNA {
this.filter_type = default;
this.filter = default;
}
public SpaceUserPref(SpaceLink ptr_next, SpaceLink ptr_prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0, char[] _pad1, char filter_type, char[] filter) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public SpaceUserPref(SpaceLink next, SpaceLink prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0, char[] _pad1, char filter_type, char[] filter) {
this.next = next;
this.prev = prev;
this.regionbase = regionbase;
this.spacetype = spacetype;
this.link_flag = link_flag;