Skip to content

Commit 5250fac

Browse files
committed
add links in doc
1 parent fc1c1ee commit 5250fac

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

crates/bevy_app/src/app.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -759,10 +759,13 @@ impl App {
759759
/// Adds a group of plugins
760760
///
761761
/// 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.
763763
///
764764
/// The plugin groups available by default are `DefaultPlugins` and `MinimalPlugins`.
765765
///
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+
///
766769
/// ## Example
767770
/// ```
768771
/// # use bevy_app::{prelude::*, PluginGroupBuilder};
@@ -788,7 +791,7 @@ impl App {
788791
/// Can be used to add a group of plugins, where the group is modified
789792
/// before insertion into Bevy application. For example, you can add
790793
/// 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`].
792795
///
793796
/// ## Example
794797
/// ```

0 commit comments

Comments
 (0)