Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -31,6 +31,16 @@ namespace BlendFile.DNA {
public short flag;
[DNAFieldAttribute(7, "char", "_pad[6]", 1)]
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.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) {
this.modifier = modifier;
this.anchor_grp_name = anchor_grp_name;