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,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(266, "bGPDlayer_Mask", 152)]
public class bGPDlayer_Mask {
[DNAFieldAttribute(0, "bGPDlayer_Mask", "*next", "bGPDlayer_Mask", 8, true, 0)]
public bGPDlayer_Mask ptr_next;
[DNAFieldAttribute(1, "bGPDlayer_Mask", "*prev", "bGPDlayer_Mask", 8, true, 8)]
public bGPDlayer_Mask ptr_prev;
[DNAFieldAttribute(2, "char", "name[128]", "System.Char[]", 128, false, 16)]
[DNAFieldAttribute(8, "bGPDlayer_Mask", 0, "*next", "bGPDlayer_Mask", true, 0)]
public bGPDlayer_Mask next;
[DNAFieldAttribute(8, "bGPDlayer_Mask", 1, "*prev", "bGPDlayer_Mask", true, 8)]
public bGPDlayer_Mask prev;
[DNAFieldAttribute(128, "char", 2, "name[128]", "System.Char[]", false, 16)]
public char[] name = new System.Char[128];
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 144)]
[DNAFieldAttribute(2, "short", 3, "flag", "short", false, 144)]
public short flag;
[DNAFieldAttribute(4, "short", "sort_index", "short", 2, false, 146)]
[DNAFieldAttribute(2, "short", 4, "sort_index", "short", false, 146)]
public short sort_index;
[DNAFieldAttribute(5, "char", "_pad[4]", "System.Char[]", 4, false, 148)]
[DNAFieldAttribute(4, "char", 5, "_pad[4]", "System.Char[]", false, 148)]
public char[] _pad = new System.Char[4];
public bGPDlayer_Mask() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.name = default;
this.flag = default;
this.sort_index = default;
this._pad = default;
}
public bGPDlayer_Mask(bGPDlayer_Mask ptr_next, bGPDlayer_Mask ptr_prev, char[] name, short flag, short sort_index, char[] _pad) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public bGPDlayer_Mask(bGPDlayer_Mask next, bGPDlayer_Mask prev, char[] name, short flag, short sort_index, char[] _pad) {
this.next = next;
this.prev = prev;
this.name = name;
this.flag = flag;
this.sort_index = sort_index;