File tree 1 file changed +5
-2
lines changed 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -469,10 +469,13 @@ impl AppBuilder {
469
469
/// Adds a group of plugins
470
470
///
471
471
/// Bevy plugins can be grouped into a set of plugins. Bevy provides
472
- /// built-in PluginGroups that provide core engine functionality.
472
+ /// built-in [`PluginGroup`] that provide core engine functionality.
473
473
///
474
474
/// The plugin groups available by default are [`DefaultPlugins`] and [`MinimalPlugins`].
475
475
///
476
+ /// To customize the plugins in the group (reorder, disable a plugin, add a new plugin
477
+ /// before / after another plugin), see [`add_plugins_with`](Self::add_plugins_with).
478
+ ///
476
479
/// ## Example
477
480
/// ```
478
481
/// # use bevy_app::{prelude::*, PluginGroupBuilder};
@@ -498,7 +501,7 @@ impl AppBuilder {
498
501
/// Can be used to add a group of plugins, where the group is modified
499
502
/// before insertion into Bevy application. For example, you can add
500
503
/// extra plugins at a specific place in the plugin group, or deactivate
501
- /// specific plugins while keeping the rest.
504
+ /// specific plugins while keeping the rest using a [`PluginGroupBuilder`] .
502
505
///
503
506
/// ## Example
504
507
/// ```
You can’t perform that action at this time.
0 commit comments