From c7a1a4518106f50c0e366589a7196793009c8a8e Mon Sep 17 00:00:00 2001 From: laundmo Date: Thu, 26 Sep 2024 20:13:42 +0200 Subject: [PATCH] fix being unable to set schedule --- Cargo.toml | 2 +- README.md | 2 +- src/plugin.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 19f89eb..25a6430 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "bevy_spatial" description = "A crate for tracking bevy entities in spatial indices." documentation = "https://docs.rs/bevy_spatial" -version = "0.9.0" +version = "0.9.1" license = "MIT OR Apache-2.0" edition = "2021" keywords = ["gamedev", "bevy", "kdtree", "knn", "nearest-neighbour"] diff --git a/README.md b/README.md index c021c1d..bef5c84 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ For more details on usage see [Examples](https://github.com/laundmo/bevy-spatial | bevy | bevy_spatial | | ---- | ------------ | -| 0.14 | 0.9.0 | +| 0.14 | 0.9.1 | | 0.13 | 0.8.0 | | 0.12 | 0.7.0 | | 0.11 | 0.6.0 | diff --git a/src/plugin.rs b/src/plugin.rs index 5a9b697..cb9d466 100644 --- a/src/plugin.rs +++ b/src/plugin.rs @@ -141,7 +141,7 @@ impl AutomaticUpdate Plugin for AutomaticUpdate { +impl Plugin for AutomaticUpdate { fn build(&self, app: &mut App) { app.insert_resource(TimestepLength(self.frequency, PhantomData::)) .configure_sets(