You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 0.10.0 example uses the "from_agent_and_bounds" helper method that is set to release with 0.11.0. Naturally, it doesn't compile without this.
It also throws an Unsatisfied Trait Bound on bevy_rapier3d::geometry::collider; doesn't satisfy _: OxidizedCollider.
There is a comment noting this "This is only compiled and available when the "rapier" feature is enabled.", however even with the rapier feature enabled this issue still occurs.
The text was updated successfully, but these errors were encountered:
It looks like the issue is tied to the fact that Rapier updated to 0.26.0, mismatching the version used in Oxidized_navigation and throwing things out of sync. Downgrading Rapier to 0.25 did away with that error, but that's not a great long-term solution.
I'm now seeing it listed in the compability chart.
I've made a fork where I'll look to upgrade it if it's trivial, but I'm still learning Rust so we'll see how it goes. :)
The 0.10.0 example uses the "from_agent_and_bounds" helper method that is set to release with 0.11.0. Naturally, it doesn't compile without this.
It also throws an Unsatisfied Trait Bound on bevy_rapier3d::geometry::collider; doesn't satisfy
_: OxidizedCollider
.There is a comment noting this "This is only compiled and available when the "rapier" feature is enabled.", however even with the rapier feature enabled this issue still occurs.
The text was updated successfully, but these errors were encountered: