mirror of
https://github.com/bevyengine/bevy
synced 2024-11-25 06:00:20 +00:00
Link Minimal and Default plugins in the docs. (#2583)
I didn't know about MinimalPlugins for way too long. This should increase visibility for others. # Objective Improve visibility and discover in the docs for Default and Minimal Plugins. ## Solution Links the two Docs pages. Co-authored-by: Mirko Rainer <52899592+mirkoRainer@users.noreply.github.com>
This commit is contained in:
parent
0c91317102
commit
a023b687dd
1 changed files with 4 additions and 0 deletions
|
@ -49,6 +49,8 @@ use bevy_winit::WinitPlugin;
|
|||
/// * [`GltfPlugin`] - with feature `bevy_gltf`
|
||||
/// * [`WinitPlugin`] - with feature `bevy_winit`
|
||||
/// * [`WgpuPlugin`] - with feature `bevy_wgpu`
|
||||
///
|
||||
/// See also [`MinimalPlugins`] for a slimmed down option
|
||||
pub struct DefaultPlugins;
|
||||
|
||||
impl PluginGroup for DefaultPlugins {
|
||||
|
@ -97,6 +99,8 @@ impl PluginGroup for DefaultPlugins {
|
|||
/// Minimal plugin group that will add the following plugins:
|
||||
/// * [`CorePlugin`]
|
||||
/// * [`ScheduleRunnerPlugin`]
|
||||
///
|
||||
/// See also [`DefaultPlugins`] for a more complete set of plugins
|
||||
pub struct MinimalPlugins;
|
||||
|
||||
impl PluginGroup for MinimalPlugins {
|
||||
|
|
Loading…
Reference in a new issue