bevy/crates/bevy_ecs/src/schedule_v3
Mike 3ff68b6ddb Stageless: fix unapplied systems (#7446)
# Objective

- The stageless executor keeps track of systems that have run, but have not applied their system buffers. The bitset for that was being cloned into apply_system_buffers and cleared in that function, but we need to clear the original version instead of the cloned version

## Solution

- move the clear out of the apply_system_buffers function.

Co-authored-by: Carter Anderson <mcanders1@gmail.com>
2023-02-03 01:20:11 +00:00
..
executor Stageless: fix unapplied systems (#7446) 2023-02-03 01:20:11 +00:00
condition.rs Add bevy_ecs::schedule_v3 module (#6587) 2023-01-17 01:39:17 +00:00
config.rs Add bevy_ecs::schedule_v3 module (#6587) 2023-01-17 01:39:17 +00:00
graph_utils.rs Add bevy_ecs::schedule_v3 module (#6587) 2023-01-17 01:39:17 +00:00
migration.rs Add bevy_ecs::schedule_v3 module (#6587) 2023-01-17 01:39:17 +00:00
mod.rs add tests for change detection and conditions for stageless (#7249) 2023-01-17 17:54:53 +00:00
schedule.rs Fix minor typos in code and docs (#7378) 2023-01-27 12:12:53 +00:00
set.rs Add bevy_ecs::schedule_v3 module (#6587) 2023-01-17 01:39:17 +00:00
state.rs Add bevy_ecs::schedule_v3 module (#6587) 2023-01-17 01:39:17 +00:00