Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -29,6 +29,15 @@ namespace BlendFile.DNA {
public BLI_mempool ptr_pool;
[DNAFieldAttribute(6, "CustomDataExternal", "*external", 1024)]
public CustomDataExternal ptr_external;
public CustomData() {
this.ptr_layers = default;
this.typemap = default;
this.totlayer = default;
this.maxlayer = default;
this.totsize = default;
this.ptr_pool = default;
this.ptr_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;
this.typemap = typemap;