Files
BlenderSharp/BlendFile/DNA/CustomData_MeshMasks.cs

44 lines
1.4 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(225, "CustomData_MeshMasks")]
public struct CustomData_MeshMasks {
[DNAFieldAttribute(0, "uint64_t", "vmask", 8)]
public ulong vmask;
[DNAFieldAttribute(1, "uint64_t", "emask", 8)]
public ulong emask;
[DNAFieldAttribute(2, "uint64_t", "fmask", 8)]
public ulong fmask;
[DNAFieldAttribute(3, "uint64_t", "pmask", 8)]
public ulong pmask;
[DNAFieldAttribute(4, "uint64_t", "lmask", 8)]
public ulong lmask;
public CustomData_MeshMasks() {
this.vmask = default;
this.emask = default;
this.fmask = default;
this.pmask = default;
this.lmask = default;
}
public CustomData_MeshMasks(ulong vmask, ulong emask, ulong fmask, ulong pmask, ulong lmask) {
this.vmask = vmask;
this.emask = emask;
this.fmask = fmask;
this.pmask = pmask;
this.lmask = lmask;
}
}
}