Type Alias bevy::ecs::schedule::SystemSetConfigs

pub type SystemSetConfigs = NodeConfigs<Interned<dyn SystemSet>>;
Expand description

A collection of SystemSetConfig.

Aliased Type§

enum SystemSetConfigs {
    NodeConfig(NodeConfig<Interned<dyn SystemSet>>),
    Configs {
        configs: Vec<NodeConfigs<Interned<dyn SystemSet>>>,
        collective_conditions: Vec<Box<dyn ReadOnlySystem<Out = bool, In = ()>>>,
        chained: Chain,
    },
}

Variants§

§

NodeConfig(NodeConfig<Interned<dyn SystemSet>>)

Configuration for a single node.

§

Configs

Configuration for a tuple of nested Configs instances.

Fields

§configs: Vec<NodeConfigs<Interned<dyn SystemSet>>>

Configuration for each element of the tuple.

§collective_conditions: Vec<Box<dyn ReadOnlySystem<Out = bool, In = ()>>>

Run conditions applied to everything in the tuple.

§chained: Chain

See Chain for usage.