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

@@ -45,6 +45,23 @@ namespace BlendFile.DNA {
public char[] defgrp_name = new System.Char[64];
[DNAFieldAttribute(14, "int", "_pad2", 4)]
public int _pad2;
public SurfaceDeformModifierData() {
this.modifier = default;
this.ptr_depsgraph = default;
this.ptr_target = default;
this.ptr_verts = default;
this.ptr__pad1 = default;
this.falloff = default;
this.num_mesh_verts = default;
this.numverts = default;
this.target_verts_num = default;
this.numpoly = default;
this.flags = default;
this.mat = default;
this.strength = default;
this.defgrp_name = default;
this._pad2 = default;
}
public SurfaceDeformModifierData(ModifierData modifier, Depsgraph ptr_depsgraph, Object ptr_target, SDefVert ptr_verts, object ptr__pad1, float falloff, int num_mesh_verts, int numverts, int target_verts_num, int numpoly, int flags, float[,] mat, float strength, char[] defgrp_name, int _pad2) {
this.modifier = modifier;
this.ptr_depsgraph = ptr_depsgraph;