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,31 +15,31 @@ namespace BlendFile.DNA {
[DNAClassAttribute(933, "SpaceNla", 208)]
public class SpaceNla {
[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, "short", "autosnap", "short", 2, false, 40)]
[DNAFieldAttribute(2, "short", 6, "autosnap", "short", false, 40)]
public short autosnap;
[DNAFieldAttribute(7, "short", "flag", "short", 2, false, 42)]
[DNAFieldAttribute(2, "short", 7, "flag", "short", false, 42)]
public short flag;
[DNAFieldAttribute(8, "char", "_pad[4]", "System.Char[]", 4, false, 44)]
[DNAFieldAttribute(4, "char", 8, "_pad[4]", "System.Char[]", false, 44)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(9, "bDopeSheet", "*ads", "bDopeSheet", 8, true, 48)]
public bDopeSheet ptr_ads;
[DNAFieldAttribute(10, "View2D", "v2d", "View2D", 152, false, 56)]
[DNAFieldAttribute(8, "bDopeSheet", 9, "*ads", "bDopeSheet", true, 48)]
public bDopeSheet ads;
[DNAFieldAttribute(152, "View2D", 10, "v2d", "View2D", false, 56)]
public View2D v2d;
public SpaceNla() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.regionbase = default;
this.spacetype = default;
this.link_flag = default;
@@ -47,12 +47,12 @@ namespace BlendFile.DNA {
this.autosnap = default;
this.flag = default;
this._pad = default;
this.ptr_ads = default;
this.ads = default;
this.v2d = default;
}
public SpaceNla(SpaceLink ptr_next, SpaceLink ptr_prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0, short autosnap, short flag, char[] _pad, bDopeSheet ptr_ads, View2D v2d) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public SpaceNla(SpaceLink next, SpaceLink prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0, short autosnap, short flag, char[] _pad, bDopeSheet ads, View2D v2d) {
this.next = next;
this.prev = prev;
this.regionbase = regionbase;
this.spacetype = spacetype;
this.link_flag = link_flag;
@@ -60,7 +60,7 @@ namespace BlendFile.DNA {
this.autosnap = autosnap;
this.flag = flag;
this._pad = _pad;
this.ptr_ads = ptr_ads;
this.ads = ads;
this.v2d = v2d;
}
}