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

@@ -39,6 +39,20 @@ namespace BlendFile.DNA {
public short guiding_mode;
[DNAFieldAttribute(11, "char", "_pad2[2]", 1)]
public char[] _pad2 = new System.Char[2];
public FluidEffectorSettings() {
this.ptr_fmd = default;
this.ptr_mesh = default;
this.ptr_verts_old = default;
this.numverts = default;
this.surface_distance = default;
this.flags = default;
this.subframes = default;
this.type = default;
this._pad1 = default;
this.vel_multi = default;
this.guiding_mode = default;
this._pad2 = default;
}
public FluidEffectorSettings(FluidModifierData ptr_fmd, Mesh ptr_mesh, float ptr_verts_old, int numverts, float surface_distance, int flags, int subframes, short type, char[] _pad1, float vel_multi, short guiding_mode, char[] _pad2) {
this.ptr_fmd = ptr_fmd;
this.ptr_mesh = ptr_mesh;