#Which feature/crate is adding `BlitPlugin`, if I have disabled the `bevy_core_pipeline` feature?

5 messages · Page 1 of 1 (latest)

polar flame
#

Is it obvious to you all which one of the features here might be adding the BlitPlugin?

bevy = { git = "https://github.com/bevyengine/bevy", default-features = false, features = [ "animation",
  "bevy_asset",
  "bevy_audio",
  "bevy_gilrs",
  "bevy_scene",
  "bevy_winit",
  "bevy_gltf",
  "bevy_render",
  "png",
  "hdr",
  "ktx2",
  "zstd",
  "vorbis",
  "x11",
  "filesystem_watcher",
  "android_shared_stdcxx",
  "default_font",
  "webgl2",] }

Note that the only plugin which adds BlitPlugin is the CorePipelinePlugin:
https://github.com/search?q=repo%3Abevyengine%2Fbevy BlitPlugin&type=code

https://github.com/bevyengine/bevy/blob/89cbc78d3dcbaca9b962a6d8f805c8d37efd1eac/crates/bevy_core_pipeline/src/lib.rs#L74

And the CorePipelinePlugin is only added by DefaultPlugins if the "bevy_core_pipeline" feature is enabled: https://github.com/search?q=repo%3Abevyengine%2Fbevy CorePipelinePlugin&type=code

and that feature is certainly not on the list above, yes?

fringe glade
#

bevy_render probably enables the core pipeline feature as well

polar flame
#

omg, thank you