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 3db90fd commit ec7fe5bCopy full SHA for ec7fe5b
crates/bevy_mod_scripting_core/src/bindings/script_system.rs
@@ -156,8 +156,7 @@ impl ScriptSystemBuilder {
156
// this is quite important, by default systems are placed in a set defined by their TYPE, i.e. in this case
157
// all script systems would be the same
158
// let set = ScriptSystemSet::next();
159
- let mut set_config = IntoSystemSetConfigs::into_configs(set);
160
- // apply ordering
+ let mut system_config = IntoSystemConfigs::<IsDynamicScriptSystem<P>>::into_configs(self); // apply ordering
161
for (other, is_before) in before_systems
162
.into_iter()
163
.map(|b| (b, true))
0 commit comments