From b9dd4aa9757deb500e7dede04ad9de27cc4fec6f Mon Sep 17 00:00:00 2001 From: Alice Cecile Date: Wed, 23 Nov 2022 00:27:29 +0000 Subject: [PATCH] Remove warning about missed events due to false positives (#6730) - Reverts #5730. - Fixes #6173, fixes #6596. Remove the warning entirely. You will no longer be spammed about > Missed 31 `bevy_input::mouse::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`