Plugin

Trait Plugin 

Source
pub trait Plugin:
    Downcast
    + Any
    + Send
    + Sync {
    // Required method
    fn build(&self, app: &mut App);

    // Provided methods
    fn ready(&self, _app: &App) -> bool { ... }
    fn finish(&self, _app: &mut App) { ... }
    fn cleanup(&self, _app: &mut App) { ... }
    fn name(&self) -> &str { ... }
    fn is_unique(&self) -> bool { ... }
}
Expand description

A collection of Bevy app logic and configuration.

Plugins configure an App. When an App registers a plugin, the plugin’s Plugin::build function is run. By default, a plugin can only be added once to an App.

If the plugin may need to be added twice or more, the function is_unique() should be overridden to return false. Plugins are considered duplicate if they have the same name(). The default name() implementation returns the type name, which means generic plugins with different type parameters will not be considered duplicates.

§Lifecycle of a plugin

When adding a plugin to an App:

§Defining a plugin.

Most plugins are simply functions that add configuration to an App.

App::new().add_plugins(my_plugin).run();

// This function implements `Plugin`, along with every other `fn(&mut App)`.
pub fn my_plugin(app: &mut App) {
    app.add_systems(Update, hello_world);
}

For more advanced use cases, the Plugin trait can be implemented manually for a type.

pub struct AccessibilityPlugin {
    pub flicker_damping: bool,
    // ...
}

impl Plugin for AccessibilityPlugin {
    fn build(&self, app: &mut App) {
        if self.flicker_damping {
            app.add_systems(PostUpdate, damp_flickering);
        }
    }
}

Required Methods§

Source

fn build(&self, app: &mut App)

Configures the App to which this plugin is added.

Provided Methods§

Source

fn ready(&self, _app: &App) -> bool

Has the plugin finished its setup? This can be useful for plugins that need something asynchronous to happen before they can finish their setup, like the initialization of a renderer. Once the plugin is ready, finish should be called.

Source

fn finish(&self, _app: &mut App)

Finish adding this plugin to the App, once all plugins registered are ready. This can be useful for plugins that depends on another plugin asynchronous setup, like the renderer.

Source

fn cleanup(&self, _app: &mut App)

Runs after all plugins are built and finished, but before the app schedule is executed. This can be useful if you have some resource that other plugins need during their build step, but after build you want to remove it and send it to another thread.

Source

fn name(&self) -> &str

Configures a name for the Plugin which is primarily used for checking plugin uniqueness and debugging.

Source

fn is_unique(&self) -> bool

If the plugin can be meaningfully instantiated several times in an App, override this method to return false.

Implementations§

Source§

impl dyn Plugin

Source

pub fn is<__T>(&self) -> bool
where __T: Plugin,

Returns true if the trait object wraps an object of type __T.

Source

pub fn downcast<__T>(self: Box<dyn Plugin>) -> Result<Box<__T>, Box<dyn Plugin>>
where __T: Plugin,

Returns a boxed object from a boxed trait object if the underlying object is of type __T. Returns the original boxed trait if it isn’t.

Source

pub fn downcast_rc<__T>(self: Rc<dyn Plugin>) -> Result<Rc<__T>, Rc<dyn Plugin>>
where __T: Plugin,

Returns an Rc-ed object from an Rc-ed trait object if the underlying object is of type __T. Returns the original Rc-ed trait if it isn’t.

Source

pub fn downcast_ref<__T>(&self) -> Option<&__T>
where __T: Plugin,

Returns a reference to the object within the trait object if it is of type __T, or None if it isn’t.

Source

pub fn downcast_mut<__T>(&mut self) -> Option<&mut __T>
where __T: Plugin,

Returns a mutable reference to the object within the trait object if it is of type __T, or None if it isn’t.

Implementations on Foreign Types§

Source§

impl Plugin for AccessibilityPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for AnimationPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for AssetPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for AudioPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for AutoExposurePlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for BlitPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for BloomPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for CasPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for Core2dPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for Core3dPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for CopyDeferredLightingIdPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for DepthOfFieldPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for MipGenerationPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for FxaaPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for MotionBlurPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for MsaaWritebackPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for OitResolvePlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for OrderIndependentTransparencyPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for PostProcessingPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for SmaaPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for CorePipelinePlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for TemporalAntiAliasPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for TonemappingPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for UpscalingPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for EntityCountDiagnosticsPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for FrameCountPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for FrameTimeDiagnosticsPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for LogDiagnosticsPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for DiagnosticsPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for SystemInformationDiagnosticsPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for GilrsPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for AabbGizmoPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for LightGizmoPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for GizmoPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for GltfPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for TextureAtlasPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for InputPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for DirectionalNavigationPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for InputDispatchPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for TabNavigationPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for LogPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for ClusteredDecalPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for ForwardDecalPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for DeferredPbrLightingPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for LightProbePlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for LightmapPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for FogPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for GpuMeshPreprocessPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for MeshRenderPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for ScreenSpaceAmbientOcclusionPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for ScreenSpaceReflectionsPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for PbrPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for PbrProjectionPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for VolumetricFogPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for WireframePlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for PointerInputPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for MeshPickingPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for InteractionPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for PickingPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for BatchingPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for CameraProjectionPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for CameraPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for RenderDiagnosticsPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for OcclusionCullingPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for GlobalsPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for GpuReadbackPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for MeshAllocatorPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for MeshBuildersPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for MeshPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for MorphPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for PipelinedRenderingPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn cleanup(&self, app: &mut App)

Source§

impl Plugin for StoragePlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for RenderPlugin

Source§

fn build(&self, app: &mut App)

Initializes the renderer, sets up the RenderSet and creates the rendering sub-app.

Source§

fn ready(&self, app: &App) -> bool

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for SyncWorldPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for ImagePlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for ViewPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for VisibilityRangePlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for VisibilityPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for ScreenshotPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for WindowRenderPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for ScenePlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for ColorMaterialPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for Mesh2dRenderPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for Wireframe2dPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for SpritePickingPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for SpritePlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for StatesPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for TextPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for TimePlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for TransformPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for UiPickingPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for BoxShadowPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for UiTextureSlicerPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for UiPlugin

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl Plugin for WindowPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl Plugin for AccessKitPlugin

Source§

fn build(&self, app: &mut App)

Source§

impl<A, AFTER> Plugin for RenderAssetPlugin<A, AFTER>
where A: RenderAsset, AFTER: RenderAssetDependency + 'static,

Source§

fn build(&self, app: &mut App)

Source§

impl<BPI, GFBD> Plugin for BinnedRenderPhasePlugin<BPI, GFBD>
where BPI: BinnedPhaseItem, GFBD: GetFullBatchData + Sync + Send + 'static,

Source§

fn build(&self, app: &mut App)

Source§

impl<C> Plugin for ExtractComponentPlugin<C>

Source§

fn build(&self, app: &mut App)

Source§

impl<C> Plugin for UniformComponentPlugin<C>

Source§

fn build(&self, app: &mut App)

Source§

impl<C> Plugin for GpuComponentArrayBufferPlugin<C>

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl<C> Plugin for SyncComponentPlugin<C>
where C: Component,

Source§

fn build(&self, app: &mut App)

Source§

impl<EI> Plugin for ExtractInstancesPlugin<EI>
where EI: ExtractInstance,

Source§

fn build(&self, app: &mut App)

Source§

impl<M> Plugin for MaterialPlugin<M>
where M: Material, <M as AsBindGroup>::Data: PartialEq + Eq + Hash + Clone,

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl<M> Plugin for PrepassPipelinePlugin<M>
where M: Material, <M as AsBindGroup>::Data: PartialEq + Eq + Hash + Clone,

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl<M> Plugin for PrepassPlugin<M>
where M: Material, <M as AsBindGroup>::Data: PartialEq + Eq + Hash + Clone,

Source§

fn build(&self, app: &mut App)

Source§

impl<M> Plugin for Material2dPlugin<M>
where M: Material2d, <M as AsBindGroup>::Data: PartialEq + Eq + Hash + Clone,

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl<M> Plugin for UiMaterialPlugin<M>
where M: UiMaterial, <M as AsBindGroup>::Data: PartialEq + Eq + Hash + Clone,

Source§

fn build(&self, app: &mut App)

Source§

fn finish(&self, app: &mut App)

Source§

impl<R> Plugin for ExtractResourcePlugin<R>
where R: ExtractResource,

Source§

fn build(&self, app: &mut App)

Source§

impl<SPI, GFBD> Plugin for SortedRenderPhasePlugin<SPI, GFBD>

Source§

fn build(&self, app: &mut App)

Source§

impl<T> Plugin for WinitPlugin<T>
where T: Event,

Source§

fn name(&self) -> &str

Source§

fn build(&self, app: &mut App)

Implementors§