diff options
Diffstat (limited to 'plugins/movement/src/reducer.rs')
| -rw-r--r-- | plugins/movement/src/reducer.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/movement/src/reducer.rs b/plugins/movement/src/reducer.rs index 334d37e..4827dd3 100644 --- a/plugins/movement/src/reducer.rs +++ b/plugins/movement/src/reducer.rs @@ -5,10 +5,10 @@ use crate::Velocity; /// Controls how Velocity is reduced #[derive(Component)] pub enum VelocityReducer { - /// Sync mode, only applies the current Velocity to Position each time, does not reduce itself + /// Sync mode, only applies the current Velocity to translation each time, does not reduce itself Sync, - /// Move mode, directly zeroes out the velocity (momentum is transferred to Position) + /// Move mode, directly zeroes out the velocity (momentum is transferred to translation) Move, /// Constant reduction mode, reduces by a fixed amount each time until it becomes Vec3::ZERO |
