Skip to content

Commit

Permalink
Update to bevy_transform_interpolation 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jondolf committed Dec 5, 2024
1 parent ded0f31 commit 8a292d0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions crates/avian2d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ bevy_picking = ["bevy/bevy_picking"]
serialize = [
"dep:serde",
"bevy/serialize",
"bevy_transform_interpolation/serialize",
"parry2d?/serde-serialize",
"parry2d-f64?/serde-serialize",
"bitflags/serde",
Expand All @@ -61,6 +62,7 @@ bench = false
avian_derive = { path = "../avian_derive", version = "0.1" }
bevy = { version = "0.15", default-features = false }
bevy_math = { version = "0.15" }
bevy_transform_interpolation = { version = "0.1" }
libm = { version = "0.2", optional = true }
parry2d = { version = "0.17", optional = true }
parry2d-f64 = { version = "0.17", optional = true }
Expand Down
2 changes: 2 additions & 0 deletions crates/avian3d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ bevy_picking = ["bevy/bevy_picking"]
serialize = [
"dep:serde",
"bevy/serialize",
"bevy_transform_interpolation/serialize",
"parry3d?/serde-serialize",
"parry3d-f64?/serde-serialize",
"bitflags/serde",
Expand All @@ -63,6 +64,7 @@ bench = false
avian_derive = { path = "../avian_derive", version = "0.1" }
bevy = { version = "0.15", default-features = false }
bevy_math = { version = "0.15" }
bevy_transform_interpolation = { version = "0.1" }
libm = { version = "0.2", optional = true }
parry3d = { version = "0.17", optional = true }
parry3d-f64 = { version = "0.17", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion src/interpolation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ use crate::prelude::*;
/// # use bevy::prelude::*;
/// #
/// fn main() {
/// App::build()
/// App::new()
/// .add_plugins(PhysicsInterpolationPlugin::interpolate_all())
/// // ...
/// .run();
Expand Down

0 comments on commit 8a292d0

Please sign in to comment.