Files
BlenderSharp/BlendFile/DNA/CustomData.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

43 lines
1.6 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(219, "CustomData")]
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;
this.typemap = typemap;
this.totlayer = totlayer;
this.maxlayer = maxlayer;
this.totsize = totsize;
this.ptr_pool = ptr_pool;
this.ptr_external = ptr_external;
}
}
}