derive clone for Input (#3569)

# Objective

- As part of exploring input event suppression in bevy_egui here: 53c1773583
- I found that the only way to suppress events properly, is to allow to clone the relevant Input<Whatever>, and update with events manually from within the system. This cloned Input then is discarded, the Events<*> structs are cleared, and bevy_input's normal update of Input proceeds, without the events that have been suppressed.

## Solution

- This enables Input to be cloned, allowing it to be manually updated with events.
This commit is contained in:
rezural 2022-02-04 02:42:59 +00:00
parent ef65548fba
commit e2cce092d7

View file

@ -28,7 +28,7 @@ use bevy_ecs::schedule::State;
/// * Call the [`Input::press`] method for each press event.
/// * Call the [`Input::release`] method for each release event.
/// * Call the [`Input::clear`] method at each frame start, before processing events.
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Input<T> {
pressed: HashSet<T>,
just_pressed: HashSet<T>,