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 d6bc414 commit b657a9bCopy full SHA for b657a9b
crates/bevy_ecs/src/schedule/system_set.rs
@@ -49,6 +49,13 @@ impl SystemSet {
49
Self::new().with_run_criteria(State::<T>::on_inactive_update(s))
50
}
51
52
+ pub fn on_in_stack_update<T>(s: T) -> SystemSet
53
+ where
54
+ T: Component + Debug + Clone + Eq + Hash,
55
+ {
56
+ Self::new().with_run_criteria(State::<T>::on_in_stack_update(s))
57
+ }
58
+
59
pub fn on_enter<T>(s: T) -> SystemSet
60
where
61
T: Component + Debug + Clone + Eq + Hash,
0 commit comments