bevy/crates/bevy_ecs/src/schedule_v3/executor
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
..
mod.rs Add bevy_ecs::schedule_v3 module (#6587) 2023-01-17 01:39:17 +00:00
multi_threaded.rs Stageless: fix unapplied systems (#7446) 2023-02-03 01:20:11 +00:00
simple.rs Add bevy_ecs::schedule_v3 module (#6587) 2023-01-17 01:39:17 +00:00
single_threaded.rs Add bevy_ecs::schedule_v3 module (#6587) 2023-01-17 01:39:17 +00:00