Files
BlenderSharp/BlendFile/DNA/CustomData.cs
2025-03-04 18:48:04 +01:00

52 lines
2.0 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", 248)]
public class CustomData {
[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(4, "int", 2, "totlayer", "int", false, 220)]
public int totlayer;
[DNAFieldAttribute(4, "int", 3, "maxlayer", "int", false, 224)]
public int maxlayer;
[DNAFieldAttribute(4, "int", 4, "totsize", "int", false, 228)]
public int totsize;
[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.layers = default;
this.typemap = default;
this.totlayer = default;
this.maxlayer = default;
this.totsize = default;
this.pool = default;
this.external = default;
}
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.pool = pool;
this.external = external;
}
}
}