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

@@ -51,6 +51,26 @@ namespace BlendFile.DNA {
public float clamp;
[DNAFieldAttribute(17, "float", "self_clamp", 4)]
public float self_clamp;
public ClothCollSettings() {
this.ptr_collision_list = default;
this.epsilon = default;
this.self_friction = default;
this.friction = default;
this.damping = default;
this.selfepsilon = default;
this.repel_force = default;
this.distance_repel = default;
this.flags = default;
this.self_loop_count = default;
this.loop_count = default;
this._pad = default;
this.ptr_group = default;
this.vgroup_selfcol = default;
this.vgroup_objcol = default;
this._pad2 = default;
this.clamp = default;
this.self_clamp = default;
}
public ClothCollSettings(
LinkNode ptr_collision_list,
float epsilon,