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

36 lines
1.1 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(263, "MDeformVert", 16)]
public class MDeformVert {
[DNAFieldAttribute(8, "MDeformWeight", 0, "*dw", "MDeformWeight", true, 0)]
public MDeformWeight dw;
[DNAFieldAttribute(4, "int", 1, "totweight", "int", false, 8)]
public int totweight;
[DNAFieldAttribute(4, "int", 2, "flag", "int", false, 12)]
public int flag;
public MDeformVert() {
this.dw = default;
this.totweight = default;
this.flag = default;
}
public MDeformVert(MDeformWeight dw, int totweight, int flag) {
this.dw = dw;
this.totweight = totweight;
this.flag = flag;
}
}
}