Trait bevy_ecs::system::ConfigurableSystem[][src]

pub trait ConfigurableSystem<In, Out, Param: SystemParam, Marker>: IntoSystem<In, Out, (IsFunctionSystem, Param, Marker)> {
    fn config(
        self,
        f: impl FnOnce(&mut <Param::Fetch as SystemParamState>::Config)
    ) -> Self::System; }
Expand description

Provides my_system.config(...) API.

Required methods

Implementors