-
Hi! I have a very basic Bevy application with a single system that queries for a specific component and prints some information when it's updated. However, even though there are no changes to the queried component, the system seems to contain a query result every frame and prints the output. Here's the simplified version of my code:
The terminal output I'm seeing is as follows:
Cargo.toml:
Environment: Expected Behavior: Also I noticed high CPU usage even when Bevy was fully idle.
Thank you for your time and assistance. BTW bevy 0.11 does not render any sprites so I am stuck with 0.10.1 as stated here: #8395 (comment) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
That's not the case. To query for only entities with changed components, you would use the |
Beta Was this translation helpful? Give feedback.
That's not the case. To query for only entities with changed components, you would use the
Changed
query filter for the particular component.