-
If I use The warning I get is something like The code looks something like this: fn build(&self, app: &mut App) {
app.add_system_to_stage(
CoreStage::Update,
my_system.exclusive_system()
.label(CustomStage::Apply)
.after(CustomStage::MyLabel),
);
} Can exclusive systems not be after a certain label? Or do I need to do something different? Or is there something else going on? |
Beta Was this translation helpful? Give feedback.
Answered by
hymm
Jan 25, 2022
Replies: 1 comment 1 reply
-
This could be 1 of 2 problems
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
lukors
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This could be 1 of 2 problems
at_start
,before_commands
,at_end
exclusive system modifiers. https://docs.rs/bevy/latest/bevy/ecs/system/struct.ExclusiveSystemFn.html#method.at_start