Skip to content

Commit

Permalink
Bump oxidized_navigation from 0.6.0 to 0.7.0 [skip ci] (#203)
Browse files Browse the repository at this point in the history
Bumps [oxidized_navigation](https://github.com/TheGrimsey/oxidized_navigation) from 0.6.0 to 0.7.0.
- [Release notes](https://github.com/TheGrimsey/oxidized_navigation/releases)
- [Changelog](https://github.com/TheGrimsey/oxidized_navigation/blob/master/CHANGELOG.md)
- [Commits](https://github.com/TheGrimsey/oxidized_navigation/commits/0.7.0)

---
updated-dependencies:
- dependency-name: oxidized_navigation
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 21, 2023
1 parent 7ab573f commit 020ce1a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
6 changes: 4 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ bevy_replicon = "0.9"
bevy_rapier3d = "0.22"
bevy_mod_outline = "0.5"
bevy_polyline = "0.7"
oxidized_navigation = "0.6"
oxidized_navigation = { version = "0.7", features = ["rapier"] }
leafwing-input-manager = "0.10"
serde = "1.0"
strum = { version = "0.25", features = ["derive"] }
Expand Down
34 changes: 16 additions & 18 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,24 +56,22 @@ fn main() {
WireframePlugin,
AtmospherePlugin,
InputManagerPlugin::<Action>::default(),
OxidizedNavigationPlugin {
settings: NavMeshSettings {
cell_width: 0.25,
cell_height: 0.1,
tile_width: 100,
world_half_extents: 250.0,
world_bottom_bound: -100.0,
max_traversable_slope_radians: (40.0_f32 - 0.1).to_radians(),
walkable_height: 20,
walkable_radius: 1,
step_height: 3,
min_region_area: 100,
merge_region_area: 500,
max_contour_simplification_error: 1.1,
max_edge_length: 80,
max_tile_generation_tasks: None,
},
},
OxidizedNavigationPlugin::<Collider>::new(NavMeshSettings {
cell_width: 0.25,
cell_height: 0.1,
tile_width: 100,
world_half_extents: 250.0,
world_bottom_bound: -100.0,
max_traversable_slope_radians: (40.0_f32 - 0.1).to_radians(),
walkable_height: 20,
walkable_radius: 1,
step_height: 3,
min_region_area: 100,
merge_region_area: 500,
max_contour_simplification_error: 1.1,
max_edge_length: 80,
max_tile_generation_tasks: None,
}),
RapierPhysicsPlugin::<NoUserData>::default(),
RapierDebugRenderPlugin::default(),
OutlinePlugin,
Expand Down

0 comments on commit 020ce1a

Please sign in to comment.