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,39 +15,39 @@ namespace BlendFile.DNA {
[DNAClassAttribute(504, "LaplacianDeformModifierData", 216)]
public class LaplacianDeformModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "char", "anchor_grp_name[64]", "System.Char[]", 64, false, 120)]
[DNAFieldAttribute(64, "char", 1, "anchor_grp_name[64]", "System.Char[]", false, 120)]
public char[] anchor_grp_name = new System.Char[64];
[DNAFieldAttribute(2, "int", "total_verts", "int", 4, false, 184)]
[DNAFieldAttribute(4, "int", 2, "total_verts", "int", false, 184)]
public int total_verts;
[DNAFieldAttribute(3, "int", "repeat", "int", 4, false, 188)]
[DNAFieldAttribute(4, "int", 3, "repeat", "int", false, 188)]
public int repeat;
[DNAFieldAttribute(4, "float", "*vertexco", "float", 8, true, 192)]
public float ptr_vertexco;
[DNAFieldAttribute(5, "void", "*cache_system", "void", 8, true, 200)]
public object ptr_cache_system;
[DNAFieldAttribute(6, "short", "flag", "short", 2, false, 208)]
[DNAFieldAttribute(8, "float", 4, "*vertexco", "float", true, 192)]
public float vertexco;
[DNAFieldAttribute(8, "void", 5, "*cache_system", "void", true, 200)]
public object cache_system;
[DNAFieldAttribute(2, "short", 6, "flag", "short", false, 208)]
public short flag;
[DNAFieldAttribute(7, "char", "_pad[6]", "System.Char[]", 6, false, 210)]
[DNAFieldAttribute(6, "char", 7, "_pad[6]", "System.Char[]", false, 210)]
public char[] _pad = new System.Char[6];
public LaplacianDeformModifierData() {
this.modifier = default;
this.anchor_grp_name = default;
this.total_verts = default;
this.repeat = default;
this.ptr_vertexco = default;
this.ptr_cache_system = default;
this.vertexco = default;
this.cache_system = default;
this.flag = default;
this._pad = default;
}
public LaplacianDeformModifierData(ModifierData modifier, char[] anchor_grp_name, int total_verts, int repeat, float ptr_vertexco, object ptr_cache_system, short flag, char[] _pad) {
public LaplacianDeformModifierData(ModifierData modifier, char[] anchor_grp_name, int total_verts, int repeat, float vertexco, object cache_system, short flag, char[] _pad) {
this.modifier = modifier;
this.anchor_grp_name = anchor_grp_name;
this.total_verts = total_verts;
this.repeat = repeat;
this.ptr_vertexco = ptr_vertexco;
this.ptr_cache_system = ptr_cache_system;
this.vertexco = vertexco;
this.cache_system = cache_system;
this.flag = flag;
this._pad = _pad;
}