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

@@ -89,6 +89,45 @@ namespace BlendFile.DNA {
public float motor_ang_max_impulse;
[DNAFieldAttribute(36, "void", "*physics_constraint", 0)]
public object ptr_physics_constraint;
public RigidBodyCon() {
this.ptr_ob1 = default;
this.ptr_ob2 = default;
this.type = default;
this.num_solver_iterations = default;
this.flag = default;
this.breaking_threshold = default;
this.spring_type = default;
this._pad = default;
this.limit_lin_x_lower = default;
this.limit_lin_x_upper = default;
this.limit_lin_y_lower = default;
this.limit_lin_y_upper = default;
this.limit_lin_z_lower = default;
this.limit_lin_z_upper = default;
this.limit_ang_x_lower = default;
this.limit_ang_x_upper = default;
this.limit_ang_y_lower = default;
this.limit_ang_y_upper = default;
this.limit_ang_z_lower = default;
this.limit_ang_z_upper = default;
this.spring_stiffness_x = default;
this.spring_stiffness_y = default;
this.spring_stiffness_z = default;
this.spring_stiffness_ang_x = default;
this.spring_stiffness_ang_y = default;
this.spring_stiffness_ang_z = default;
this.spring_damping_x = default;
this.spring_damping_y = default;
this.spring_damping_z = default;
this.spring_damping_ang_x = default;
this.spring_damping_ang_y = default;
this.spring_damping_ang_z = default;
this.motor_lin_target_velocity = default;
this.motor_ang_target_velocity = default;
this.motor_lin_max_impulse = default;
this.motor_ang_max_impulse = default;
this.ptr_physics_constraint = default;
}
public RigidBodyCon(
Object ptr_ob1,
Object ptr_ob2,