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,41 +15,41 @@ namespace BlendFile.DNA {
[DNAClassAttribute(479, "ExplodeModifierData", 216)]
public class ExplodeModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "int", "*facepa", "int", 8, true, 120)]
public int ptr_facepa;
[DNAFieldAttribute(2, "short", "flag", "short", 2, false, 128)]
[DNAFieldAttribute(8, "int", 1, "*facepa", "int", true, 120)]
public int facepa;
[DNAFieldAttribute(2, "short", 2, "flag", "short", false, 128)]
public short flag;
[DNAFieldAttribute(3, "short", "vgroup", "short", 2, false, 130)]
[DNAFieldAttribute(2, "short", 3, "vgroup", "short", false, 130)]
public short vgroup;
[DNAFieldAttribute(4, "float", "protect", "float", 4, false, 132)]
[DNAFieldAttribute(4, "float", 4, "protect", "float", false, 132)]
public float protect;
[DNAFieldAttribute(5, "char", "uvname[68]", "System.Char[]", 68, false, 136)]
[DNAFieldAttribute(68, "char", 5, "uvname[68]", "System.Char[]", false, 136)]
public char[] uvname = new System.Char[68];
[DNAFieldAttribute(6, "char", "_pad1[4]", "System.Char[]", 4, false, 204)]
[DNAFieldAttribute(4, "char", 6, "_pad1[4]", "System.Char[]", false, 204)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(7, "void", "*_pad2", "void", 8, true, 208)]
public object ptr__pad2;
[DNAFieldAttribute(8, "void", 7, "*_pad2", "void", true, 208)]
public object _pad2;
public ExplodeModifierData() {
this.modifier = default;
this.ptr_facepa = default;
this.facepa = default;
this.flag = default;
this.vgroup = default;
this.protect = default;
this.uvname = default;
this._pad1 = default;
this.ptr__pad2 = default;
this._pad2 = default;
}
public ExplodeModifierData(ModifierData modifier, int ptr_facepa, short flag, short vgroup, float protect, char[] uvname, char[] _pad1, object ptr__pad2) {
public ExplodeModifierData(ModifierData modifier, int facepa, short flag, short vgroup, float protect, char[] uvname, char[] _pad1, object _pad2) {
this.modifier = modifier;
this.ptr_facepa = ptr_facepa;
this.facepa = facepa;
this.flag = flag;
this.vgroup = vgroup;
this.protect = protect;
this.uvname = uvname;
this._pad1 = _pad1;
this.ptr__pad2 = ptr__pad2;
this._pad2 = _pad2;
}
}
}