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(219, "CustomData", 248)]
public class CustomData {
[DNAFieldAttribute(0, "CustomDataLayer", "*layers", "CustomDataLayer", 8, true, 0)]
public CustomDataLayer ptr_layers;
[DNAFieldAttribute(1, "int", "typemap[53]", "System.Int32[]", 212, false, 8)]
[DNAFieldAttribute(8, "CustomDataLayer", 0, "*layers", "CustomDataLayer", true, 0)]
public CustomDataLayer layers;
[DNAFieldAttribute(212, "int", 1, "typemap[53]", "System.Int32[]", false, 8)]
public int[] typemap = new System.Int32[53];
[DNAFieldAttribute(2, "int", "totlayer", "int", 4, false, 220)]
[DNAFieldAttribute(4, "int", 2, "totlayer", "int", false, 220)]
public int totlayer;
[DNAFieldAttribute(3, "int", "maxlayer", "int", 4, false, 224)]
[DNAFieldAttribute(4, "int", 3, "maxlayer", "int", false, 224)]
public int maxlayer;
[DNAFieldAttribute(4, "int", "totsize", "int", 4, false, 228)]
[DNAFieldAttribute(4, "int", 4, "totsize", "int", false, 228)]
public int totsize;
[DNAFieldAttribute(5, "BLI_mempool", "*pool", "BLI_mempool", 8, true, 232)]
public BLI_mempool ptr_pool;
[DNAFieldAttribute(6, "CustomDataExternal", "*external", "CustomDataExternal", 8, true, 240)]
public CustomDataExternal ptr_external;
[DNAFieldAttribute(8, "BLI_mempool", 5, "*pool", "BLI_mempool", true, 232)]
public BLI_mempool pool;
[DNAFieldAttribute(8, "CustomDataExternal", 6, "*external", "CustomDataExternal", true, 240)]
public CustomDataExternal external;
public CustomData() {
this.ptr_layers = default;
this.layers = default;
this.typemap = default;
this.totlayer = default;
this.maxlayer = default;
this.totsize = default;
this.ptr_pool = default;
this.ptr_external = default;
this.pool = default;
this.external = default;
}
public CustomData(CustomDataLayer ptr_layers, int[] typemap, int totlayer, int maxlayer, int totsize, BLI_mempool ptr_pool, CustomDataExternal ptr_external) {
this.ptr_layers = ptr_layers;
public CustomData(CustomDataLayer layers, int[] typemap, int totlayer, int maxlayer, int totsize, BLI_mempool pool, CustomDataExternal external) {
this.layers = layers;
this.typemap = typemap;
this.totlayer = totlayer;
this.maxlayer = maxlayer;
this.totsize = totsize;
this.ptr_pool = ptr_pool;
this.ptr_external = ptr_external;
this.pool = pool;
this.external = external;
}
}
}