Start experimenting with a generic joint implementation for joint drives.
This commit is contained in:
@@ -122,6 +122,11 @@ impl NPhysicsWorld {
|
||||
|
||||
nphysics_joints.insert(c);
|
||||
}
|
||||
JointParams::GenericJoint(_) => {
|
||||
eprintln!(
|
||||
"Joint type currently unsupported by the nphysics backend: GenericJoint."
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -421,6 +421,11 @@ impl PhysxWorld {
|
||||
&frame2 as *const _,
|
||||
);
|
||||
}
|
||||
JointParams::GenericJoint(_) => {
|
||||
eprintln!(
|
||||
"Joint type currently unsupported by the nphysics backend: GenericJoint."
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user