aboutsummaryrefslogtreecommitdiff
path: root/src_testbed
diff options
context:
space:
mode:
Diffstat (limited to 'src_testbed')
-rw-r--r--src_testbed/nphysics_backend.rs5
-rw-r--r--src_testbed/physx_backend.rs5
2 files changed, 10 insertions, 0 deletions
diff --git a/src_testbed/nphysics_backend.rs b/src_testbed/nphysics_backend.rs
index 8b88e28..cce56e8 100644
--- a/src_testbed/nphysics_backend.rs
+++ b/src_testbed/nphysics_backend.rs
@@ -122,6 +122,11 @@ impl NPhysicsWorld {
nphysics_joints.insert(c);
}
+ JointParams::GenericJoint(_) => {
+ eprintln!(
+ "Joint type currently unsupported by the nphysics backend: GenericJoint."
+ )
+ }
}
}
diff --git a/src_testbed/physx_backend.rs b/src_testbed/physx_backend.rs
index 319736c..011a450 100644
--- a/src_testbed/physx_backend.rs
+++ b/src_testbed/physx_backend.rs
@@ -421,6 +421,11 @@ impl PhysxWorld {
&frame2 as *const _,
);
}
+ JointParams::GenericJoint(_) => {
+ eprintln!(
+ "Joint type currently unsupported by the nphysics backend: GenericJoint."
+ )
+ }
}
}
}