File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -759,10 +759,13 @@ impl App {
759
759
/// Adds a group of plugins
760
760
///
761
761
/// Bevy plugins can be grouped into a set of plugins. Bevy provides
762
- /// built-in `PluginGroups` that provide core engine functionality.
762
+ /// built-in [`PluginGroup`]s that provide core engine functionality.
763
763
///
764
764
/// The plugin groups available by default are `DefaultPlugins` and `MinimalPlugins`.
765
765
///
766
+ /// To customize the plugins in the group (reorder, disable a plugin, add a new plugin
767
+ /// before / after another plugin), see [`add_plugins_with`](Self::add_plugins_with).
768
+ ///
766
769
/// ## Example
767
770
/// ```
768
771
/// # use bevy_app::{prelude::*, PluginGroupBuilder};
@@ -788,7 +791,7 @@ impl App {
788
791
/// Can be used to add a group of plugins, where the group is modified
789
792
/// before insertion into Bevy application. For example, you can add
790
793
/// extra plugins at a specific place in the plugin group, or deactivate
791
- /// specific plugins while keeping the rest.
794
+ /// specific plugins while keeping the rest using a [`PluginGroupBuilder`] .
792
795
///
793
796
/// ## Example
794
797
/// ```
You can’t perform that action at this time.
0 commit comments