You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Objective
- Updates list of plugins and feature information in `DefaultPlugins` doc comment
- Solve the short term issue of #7332
## Solution
- Update doc comment to reflect current implementation
- Sort plugins by appearance in implementation
/// * [`AssetPlugin`](crate::asset::AssetPlugin) - with feature `bevy_asset`
15
+
/// * [`DebugAssetPlugin`](crate::asset::debug_asset_server::DebugAssetServerPlugin) - with feature `debug_asset_server`
16
+
/// * [`ScenePlugin`](crate::scene::ScenePlugin) - with feature `bevy_scene`
17
+
/// * [`WinitPlugin`](crate::winit::WinitPlugin) - with feature `bevy_winit`
16
18
/// * [`RenderPlugin`](crate::render::RenderPlugin) - with feature `bevy_render`
19
+
/// * [`ImagePlugin`](crate::render::texture::ImagePlugin) - with feature `bevy_render`
20
+
/// * [`PipelinedRenderingPlugin`](crate::render::pipelined_rendering::PipelinedRenderingPlugin) - with feature `bevy_render` when not targeting `wasm32`
21
+
/// * [`CorePipelinePlugin`](crate::core_pipeline::CorePipelinePlugin) - with feature `bevy_core_pipeline`
17
22
/// * [`SpritePlugin`](crate::sprite::SpritePlugin) - with feature `bevy_sprite`
18
-
/// * [`PbrPlugin`](crate::pbr::PbrPlugin) - with feature `bevy_pbr`
19
-
/// * [`UiPlugin`](crate::ui::UiPlugin) - with feature `bevy_ui`
20
23
/// * [`TextPlugin`](crate::text::TextPlugin) - with feature `bevy_text`
24
+
/// * [`UiPlugin`](crate::ui::UiPlugin) - with feature `bevy_ui`
25
+
/// * [`PbrPlugin`](crate::pbr::PbrPlugin) - with feature `bevy_pbr`
26
+
/// * [`GltfPlugin`](crate::gltf::GltfPlugin) - with feature `bevy_gltf`
21
27
/// * [`AudioPlugin`](crate::audio::AudioPlugin) - with feature `bevy_audio`
22
28
/// * [`GilrsPlugin`](crate::gilrs::GilrsPlugin) - with feature `bevy_gilrs`
23
-
/// * [`GltfPlugin`](crate::gltf::GltfPlugin) - with feature `bevy_gltf`
24
-
/// * [`WinitPlugin`](crate::winit::WinitPlugin) - with feature `bevy_winit`
29
+
/// * [`AnimationPlugin`](crate::animation::AnimationPlugin) - with feature `bevy_animation`
25
30
///
26
31
/// [`DefaultPlugins`] obeys *Cargo* *feature* flags. Users may exert control over this plugin group
27
32
/// by disabling `default-features` in their `Cargo.toml` and enabling only those features
0 commit comments