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

44 lines
1.5 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", 40)]
public class CustomData_MeshMasks {
[DNAFieldAttribute(8, "uint64_t", 0, "vmask", "uint64_t", false, 0)]
public ulong vmask;
[DNAFieldAttribute(8, "uint64_t", 1, "emask", "uint64_t", false, 8)]
public ulong emask;
[DNAFieldAttribute(8, "uint64_t", 2, "fmask", "uint64_t", false, 16)]
public ulong fmask;
[DNAFieldAttribute(8, "uint64_t", 3, "pmask", "uint64_t", false, 24)]
public ulong pmask;
[DNAFieldAttribute(8, "uint64_t", 4, "lmask", "uint64_t", false, 32)]
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;
}
}
}