mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
Docs: DefaultPlugins vs. MinimalPlugins and ScheduleRunnerPlugin (#7226)
# Objective The naming of the two plugin groups `DefaultPlugins` and `MinimalPlugins` suggests that one is a super-set of the other but this is not the case. Instead, the two plugin groups are intended for very different purposes. Closes: https://github.com/bevyengine/bevy/issues/7173 ## Solution This merge request adds doc. comments that compensate for this and try save the user from confusion. 1. `DefaultPlugins` and `MinimalPlugins` intentions are described. 2. A strong emphasis on embracing `DefaultPlugins` as a whole but controlling what it contains with *Cargo* *features* is added – this is because the ordering in `DefaultPlugins` appears to be important so preventing users with "minimalist" foibles (That's Me!) from recreating the code seems worthwhile. 3. Notes are added explaining the confusing fact that `MinimalPlugins` contains `ScheduleRunnerPlugin` (which is very "important"-sounding) but `DefaultPlugins` does not.
This commit is contained in:
parent
ef8746a91a
commit
6e44d8a251
2 changed files with 27 additions and 4 deletions
|
@ -61,6 +61,16 @@ impl ScheduleRunnerSettings {
|
|||
|
||||
/// Configures an [`App`] to run its [`Schedule`](bevy_ecs::schedule::Schedule) according to a given
|
||||
/// [`RunMode`].
|
||||
///
|
||||
/// [`ScheduleRunnerPlugin`] is included in the
|
||||
/// [`MinimalPlugins`](https://docs.rs/bevy/latest/bevy/struct.MinimalPlugins.html) plugin group.
|
||||
///
|
||||
/// [`ScheduleRunnerPlugin`] is *not* included in the
|
||||
/// [`DefaultPlugins`](https://docs.rs/bevy/latest/bevy/struct.DefaultPlugins.html) plugin group
|
||||
/// which assumes that the [`Schedule`](bevy_ecs::schedule::Schedule) will be executed by other means:
|
||||
/// typically, the `winit` event loop
|
||||
/// (see [`WinitPlugin`](https://docs.rs/bevy/latest/bevy/winit/struct.WinitPlugin.html))
|
||||
/// executes the schedule making [`ScheduleRunnerPlugin`] unnecessary.
|
||||
#[derive(Default)]
|
||||
pub struct ScheduleRunnerPlugin;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use bevy_app::{PluginGroup, PluginGroupBuilder};
|
||||
|
||||
/// This plugin group will add all the default plugins:
|
||||
/// This plugin group will add all the default plugins for a *Bevy* application:
|
||||
/// * [`LogPlugin`](crate::log::LogPlugin)
|
||||
/// * [`TaskPoolPlugin`](crate::core::TaskPoolPlugin)
|
||||
/// * [`TypeRegistrationPlugin`](crate::core::TypeRegistrationPlugin)
|
||||
|
@ -23,7 +23,13 @@ use bevy_app::{PluginGroup, PluginGroupBuilder};
|
|||
/// * [`GltfPlugin`](crate::gltf::GltfPlugin) - with feature `bevy_gltf`
|
||||
/// * [`WinitPlugin`](crate::winit::WinitPlugin) - with feature `bevy_winit`
|
||||
///
|
||||
/// See also [`MinimalPlugins`] for a slimmed down option
|
||||
/// [`DefaultPlugins`] obeys *Cargo* *feature* flags. Users may exert control over this plugin group
|
||||
/// by disabling `default-features` in their `Cargo.toml` and enabling only those features
|
||||
/// that they wish to use.
|
||||
///
|
||||
/// [`DefaultPlugins`] contains all the plugins typically required to build
|
||||
/// a *Bevy* application which includes a *window* and presentation components.
|
||||
/// For *headless* cases – without a *window* or presentation, see [`MinimalPlugins`].
|
||||
pub struct DefaultPlugins;
|
||||
|
||||
impl PluginGroup for DefaultPlugins {
|
||||
|
@ -127,14 +133,21 @@ impl PluginGroup for DefaultPlugins {
|
|||
}
|
||||
}
|
||||
|
||||
/// Minimal plugin group that will add the following plugins:
|
||||
/// This plugin group will add the minimal plugins for a *Bevy* application:
|
||||
/// * [`TaskPoolPlugin`](crate::core::TaskPoolPlugin)
|
||||
/// * [`TypeRegistrationPlugin`](crate::core::TypeRegistrationPlugin)
|
||||
/// * [`FrameCountPlugin`](crate::core::FrameCountPlugin)
|
||||
/// * [`TimePlugin`](crate::time::TimePlugin)
|
||||
/// * [`ScheduleRunnerPlugin`](crate::app::ScheduleRunnerPlugin)
|
||||
///
|
||||
/// See also [`DefaultPlugins`] for a more complete set of plugins
|
||||
/// This group of plugins is intended for use for minimal, *headless* programs –
|
||||
/// see the [*Bevy* *headless* example](https://github.com/bevyengine/bevy/blob/main/examples/app/headless.rs)
|
||||
/// – and includes a [schedule runner (`ScheduleRunnerPlugin`)](crate::app::ScheduleRunnerPlugin)
|
||||
/// to provide functionality that would otherwise be driven by a windowed application's
|
||||
/// *event loop* or *message loop*.
|
||||
///
|
||||
/// Windowed applications that wish to use a reduced set of plugins should consider the
|
||||
/// [`DefaultPlugins`] plugin group which can be controlled with *Cargo* *feature* flags.
|
||||
pub struct MinimalPlugins;
|
||||
|
||||
impl PluginGroup for MinimalPlugins {
|
||||
|
|
Loading…
Reference in a new issue