Skip to content

Commit 405f5a3

Browse files
committed
add inks in doc
1 parent 76881d7 commit 405f5a3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

crates/bevy_app/src/app_builder.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,10 +469,13 @@ impl AppBuilder {
469469
/// Adds a group of plugins
470470
///
471471
/// 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.
473473
///
474474
/// The plugin groups available by default are [`DefaultPlugins`] and [`MinimalPlugins`].
475475
///
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+
///
476479
/// ## Example
477480
/// ```
478481
/// # use bevy_app::{prelude::*, PluginGroupBuilder};
@@ -498,7 +501,7 @@ impl AppBuilder {
498501
/// Can be used to add a group of plugins, where the group is modified
499502
/// before insertion into Bevy application. For example, you can add
500503
/// 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`].
502505
///
503506
/// ## Example
504507
/// ```

0 commit comments

Comments
 (0)