Trait bevy::app::PluginGroup

pub trait PluginGroup: Sized {
    fn build(self) -> PluginGroupBuilder;

    fn name() -> String { ... }
    fn set<T>(self, plugin: T) -> PluginGroupBuilder
    where
        T: Plugin
, { ... } }
Expand description

Combines multiple Plugins into a single unit.

Required Methods§

Configures the Plugins that are to be added.

Provided Methods§

Configures a name for the PluginGroup which is primarily used for debugging.

Sets the value of the given Plugin, if it exists

Implementors§