Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,19 +15,19 @@ namespace BlendFile.DNA {
[DNAClassAttribute(263, "MDeformVert", 16)]
public class MDeformVert {
[DNAFieldAttribute(0, "MDeformWeight", "*dw", "MDeformWeight", 8, true, 0)]
public MDeformWeight ptr_dw;
[DNAFieldAttribute(1, "int", "totweight", "int", 4, false, 8)]
[DNAFieldAttribute(8, "MDeformWeight", 0, "*dw", "MDeformWeight", true, 0)]
public MDeformWeight dw;
[DNAFieldAttribute(4, "int", 1, "totweight", "int", false, 8)]
public int totweight;
[DNAFieldAttribute(2, "int", "flag", "int", 4, false, 12)]
[DNAFieldAttribute(4, "int", 2, "flag", "int", false, 12)]
public int flag;
public MDeformVert() {
this.ptr_dw = default;
this.dw = default;
this.totweight = default;
this.flag = default;
}
public MDeformVert(MDeformWeight ptr_dw, int totweight, int flag) {
this.ptr_dw = ptr_dw;
public MDeformVert(MDeformWeight dw, int totweight, int flag) {
this.dw = dw;
this.totweight = totweight;
this.flag = flag;
}