Start experimenting with a generic joint implementation for joint drives.

This commit is contained in:
Crozet Sébastien
2021-02-10 11:56:51 +01:00
parent 3be8669206
commit 5b80c4efbf
14 changed files with 1350 additions and 7 deletions

View File

@@ -421,6 +421,11 @@ impl PhysxWorld {
&frame2 as *const _,
);
}
JointParams::GenericJoint(_) => {
eprintln!(
"Joint type currently unsupported by the nphysics backend: GenericJoint."
)
}
}
}
}