Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,14 +11,22 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class CustomData {
[DNAFieldAttribute(0, "CustomDataLayer", "*layers", 120)]
public CustomDataLayer ptr_layers;
[DNAFieldAttribute(1, "int", "typemap[53]", 4)]
public int[] typemap = new System.Int32[53];
[DNAFieldAttribute(2, "int", "totlayer", 4)]
public int totlayer;
[DNAFieldAttribute(3, "int", "maxlayer", 4)]
public int maxlayer;
[DNAFieldAttribute(4, "int", "totsize", 4)]
public int totsize;
[DNAFieldAttribute(5, "BLI_mempool", "*pool", 0)]
public BLI_mempool ptr_pool;
[DNAFieldAttribute(6, "CustomDataExternal", "*external", 1024)]
public CustomDataExternal ptr_external;
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;