Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGrimsey committed Mar 22, 2024
1 parent ca4fd47 commit 1e754e0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "oxidized_navigation"
description = "A Nav-Mesh generation plugin for Bevy Engine."
version = "0.10.0"
version = "0.11.0"
edition = "2021"

authors = ["TheGrimsey"]
Expand Down
2 changes: 2 additions & 0 deletions MIGRATING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## 0.11



## 0.7

### ``OxidizedNavigationPlugin`` is now generic over OxidizedColliders.
Expand Down
2 changes: 1 addition & 1 deletion src/regions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ fn expand_regions_until_end(
level_stack.clear();

for (c_i, cell) in tile.cells.iter().enumerate() {
for (s_i, span) in cell.spans.iter().enumerate() {
for (s_i, span) in cell.spans.iter().enumerate() {
if regions[span.tile_index] == 0 && tile.areas[span.tile_index].is_some() {
level_stack.push(LevelStackEntry {
cell_index: c_i as u32,
Expand Down

0 comments on commit 1e754e0

Please sign in to comment.