bevy/crates/bevy_ecs/src
Alice Cecile c7ad98ae19 Remove warning about missed events due to false positives (#6730)
# Objective

- Reverts #5730.
- Fixes #6173, fixes #6596.

## Solution

Remove the warning entirely.

## Changelog

You will no longer be spammed about

> Missed 31 `bevy_input:🐭:MouseMotion` events. Consider
reading from the `EventReader` more often (generally the best
solution) or calling Events::update() less frequently
(normally this is called once per frame). This problem is most
likely due to run criteria/fixed timesteps or consuming events
conditionally. See the Events documentation for
more information.

when you miss events. These warnings were often (but not always) a false positive. You can still check this manually by using `ManualEventReader::missed_events`
2022-11-30 13:51:09 -08:00
..
entity Make Entity::to_bits const (#6559) 2022-11-12 16:15:04 +00:00
query Fix size_hint for partially consumed QueryIter and QueryCombinationIter (#5214) 2022-11-30 13:49:20 -08:00
schedule Fix clippy::iter_with_drain (#6485) 2022-11-06 01:42:15 +00:00
storage Replace BlobVec's swap_scratch with a swap_nonoverlapping (#4853) 2022-11-30 13:47:06 -08:00
system Fix PipeSystem panicking with exclusive systems (#6698) 2022-11-30 13:49:47 -08:00
world fix mutable aliases for a very short time if WorldCell is already borrowed (#6639) 2022-11-30 13:50:03 -08:00
archetype.rs Fix spawning empty bundles (#6425) 2022-11-03 22:50:41 +00:00
bundle.rs Fix spawning empty bundles (#6425) 2022-11-03 22:50:41 +00:00
change_detection.rs Implement IntoIterator for ECS wrapper types. (#5096) 2022-10-24 21:01:08 +00:00
component.rs Fix CI issues arising from use of Rust 1.64 (#6067) 2022-09-22 16:56:43 +00:00
event.rs Remove warning about missed events due to false positives (#6730) 2022-11-30 13:51:09 -08:00
lib.rs Fix get_unchecked_manual using archetype index instead of table row. (#6625) 2022-11-30 13:45:54 -08:00
reflect.rs Enable Constructing ReflectComponent/Resource (#6257) 2022-10-17 14:01:50 +00:00