Skip to content

Commit 664de6b

Browse files
committed
add comment
1 parent a9d3ca1 commit 664de6b

File tree

1 file changed

+7
-1
lines changed
  • crates/bevy_mod_scripting_functions/src

1 file changed

+7
-1
lines changed

crates/bevy_mod_scripting_functions/src/core.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,6 +747,9 @@ impl ReflectSystem {
747747
)]
748748
impl ScriptSystemBuilder {
749749
/// 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+
///
750753
/// Arguments:
751754
/// * `self_`: The system builder to add the dependency to.
752755
/// * `system`: The system to run after.
@@ -762,7 +765,10 @@ impl ScriptSystemBuilder {
762765
Val(builder)
763766
}
764767

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+
///
766772
/// Arguments:
767773
/// * `self_`: The system builder to add the dependency to.
768774
/// * `system`: The system to run before.

0 commit comments

Comments
 (0)