File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
crates/bevy_mod_scripting_functions/src Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -747,6 +747,9 @@ impl ReflectSystem {
747
747
) ]
748
748
impl ScriptSystemBuilder {
749
749
/// Specifies the system is to run *after* the given system
750
+ ///
751
+ /// Note: this is an experimental feature, and the ordering might not work correctly for script initialized systems
752
+ ///
750
753
/// Arguments:
751
754
/// * `self_`: The system builder to add the dependency to.
752
755
/// * `system`: The system to run after.
@@ -762,7 +765,10 @@ impl ScriptSystemBuilder {
762
765
Val ( builder)
763
766
}
764
767
765
- /// Specifies the system is to run *before* the given system
768
+ /// Specifies the system is to run *before* the given system.
769
+ ///
770
+ /// Note: this is an experimental feature, and the ordering might not work correctly for script initialized systems
771
+ ///
766
772
/// Arguments:
767
773
/// * `self_`: The system builder to add the dependency to.
768
774
/// * `system`: The system to run before.
You can’t perform that action at this time.
0 commit comments