Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Add Input::reset_all #5015

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions crates/bevy_input/src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@ where
self.just_released.remove(&input);
}

/// Clears the `pressed`, `just_pressed`, and `just_released` data for every input.
pub fn reset_all(&mut self) {
self.pressed.clear();
self.just_pressed.clear();
self.just_released.clear();
}

/// Clears the `just pressed` and `just released` data for every input.
pub fn clear(&mut self) {
self.just_pressed.clear();
Expand Down Expand Up @@ -284,6 +291,22 @@ mod test {
assert!(!input.just_released(DummyInput::Input1));
}

#[test]
fn test_reset_all() {
let mut input = Input::default();

input.press(DummyInput::Input1);
input.press(DummyInput::Input2);
input.release(DummyInput::Input2);
assert!(input.pressed.contains(&DummyInput::Input1));
assert!(input.just_pressed.contains(&DummyInput::Input1));
assert!(input.just_released.contains(&DummyInput::Input2));
input.reset_all();
assert!(input.pressed.is_empty());
assert!(input.just_pressed.is_empty());
assert!(input.just_released.is_empty());
}

#[test]
fn test_clear() {
let mut input = Input::default();
Expand Down