error[E0277]: the trait bound `PhysicsBundle<'_, '_, f32, NPhysicsBackend>: SystemBundle<'_, '_>` is not satisfied
--> src\main.rs:227:22
|
227 | .with_bundle(PhysicsBundle::<f32, NPhysicsBackend>::new()).unwrap()
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `SystemBundle<'_, '_>` is not implemented for `PhysicsBundle<'_, '_, f32, NPhysicsBackend>`
use amethyst_physics::PhysicsBundle;
use amethyst_nphysics::NPhysicsBackend;
I get this error:
And I import these types in as such:
The reason why I do that is because I think
NPhysicsBackendwas moved out ofamethysta while ago. Any clue what's up?