Skip to content

Commit

Permalink
add links in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Jul 27, 2021
1 parent 625e020 commit 9cd8d0f
Show file tree
Hide file tree
Showing 2 changed files with 567 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/bevy_app/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -489,10 +489,13 @@ impl App {
/// Adds a group of plugins
///
/// Bevy plugins can be grouped into a set of plugins. Bevy provides
/// built-in PluginGroups that provide core engine functionality.
/// built-in [`PluginGroup`]s that provide core engine functionality.
///
/// The plugin groups available by default are [`DefaultPlugins`] and [`MinimalPlugins`].
///
/// To customize the plugins in the group (reorder, disable a plugin, add a new plugin
/// before / after another plugin), see [`add_plugins_with`](Self::add_plugins_with).
///
/// ## Example
/// ```
/// # use bevy_app::{prelude::*, PluginGroupBuilder};
Expand All @@ -518,7 +521,7 @@ impl App {
/// Can be used to add a group of plugins, where the group is modified
/// before insertion into Bevy application. For example, you can add
/// extra plugins at a specific place in the plugin group, or deactivate
/// specific plugins while keeping the rest.
/// specific plugins while keeping the rest using a [`PluginGroupBuilder`].
///
/// ## Example
/// ```
Expand Down
Loading

0 comments on commit 9cd8d0f

Please sign in to comment.