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,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(435, "MDisps", 16)]
public class MDisps {
[DNAFieldAttribute(0, "int", "totdisp", "int", 4, false, 0)]
[DNAFieldAttribute(4, "int", 0, "totdisp", "int", false, 0)]
public int totdisp;
[DNAFieldAttribute(1, "int", "level", "int", 4, false, 4)]
[DNAFieldAttribute(4, "int", 1, "level", "int", false, 4)]
public int level;
[DNAFieldAttribute(3, "int", "*hidden", "int", 8, true, 8)]
public int ptr_hidden;
[DNAFieldAttribute(8, "int", 3, "*hidden", "int", true, 8)]
public int hidden;
public MDisps() {
this.totdisp = default;
this.level = default;
this.ptr_hidden = default;
this.hidden = default;
}
public MDisps(int totdisp, int level, int ptr_hidden) {
public MDisps(int totdisp, int level, int hidden) {
this.totdisp = totdisp;
this.level = level;
this.ptr_hidden = ptr_hidden;
this.hidden = hidden;
}
}
}