Skip to content

Commit fc1d657

Browse files
committed
Add bevy_math with curve features
1 parent 636a3fe commit fc1d657

3 files changed

Lines changed: 7 additions & 0 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ version = "0.16.0-rc.5"
2222
default-features = false
2323
features = ["std"]
2424

25+
[dependencies.bevy_math]
26+
version = "0.16.0-rc.5"
27+
default-features = false
28+
features = ["curve"]
29+
2530
[dependencies.bevy_time_runner]
2631
version = "0.3.0"
2732
git = "https://github.com/Multirious/bevy_time_runner"

src/interpolation.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
//! **Systems**:
1010
//! - [`sample_interpolations_system`]
1111
12+
use bevy::math::curve::EaseFunction;
1213
use bevy::prelude::*;
1314

1415
use crate::{tween::TweenInterpolationValue, TweenSystemSet};

0 commit comments

Comments
 (0)