We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4209ae commit f94d708Copy full SHA for f94d708
crates/bevy_ecs/src/schedule/state.rs
@@ -545,7 +545,7 @@ mod test {
545
},
546
))
547
.add_system_set(State::on_inactive_update_set(MyState::S4).with_system(
548
- (|mut r: ResMut<Vec<&'static str>>| r.push(inactive_s4)).label(inactive_s4),
+ (|mut r: ResMut<Vec<&'static str>>| r.push("inactive S4")).label(inactive_s4),
549
550
.add_system_set(
551
State::on_update_set(MyState::S5).with_system(
@@ -558,7 +558,7 @@ mod test {
558
)
559
560
State::on_inactive_update_set(MyState::S5).with_system(
561
- (|mut r: ResMut<Vec<&'static str>>| r.push(inactive_s5))
+ (|mut r: ResMut<Vec<&'static str>>| r.push("inactive S5"))
562
.label(inactive_s5)
563
.after(inactive_s4),
564
),
0 commit comments