You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/bevy_mod_scripting_core/src/lib.rs
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,10 @@ pub enum ScriptingSystemSet {
55
55
56
56
/// Types which act like scripting plugins, by selecting a context and runtime
57
57
/// Each individual combination of context and runtime has specific infrastructure built for it and does not interact with other scripting plugins
58
+
///
59
+
/// When implementing a new scripting plugin, also ensure the following implementations exist:
60
+
/// - [`Plugin`] for the plugin, both [`Plugin::build`] and [`Plugin::finish`] methods need to be dispatched to the underlying [`ScriptingPlugin`] struct
61
+
/// - [`AsMut<ScriptingPlugin<Self>`] for the plugin struct
0 commit comments