[]Struct bevy::ecs::prelude::Schedule

pub struct Schedule { /* fields omitted */ }

Implementations

impl Schedule

pub fn with_stage<S>(self, name: &str, stage: S) -> Schedule where
    S: Stage

pub fn with_stage_after<S>(self, target: &str, name: &str, stage: S) -> Schedule where
    S: Stage

pub fn with_stage_before<S>(
    self,
    target: &str,
    name: &str,
    stage: S
) -> Schedule where
    S: Stage

pub fn with_run_criteria<S>(self, system: S) -> Schedule where
    S: System<In = (), Out = ShouldRun>, 

pub fn with_system_in_stage<S>(
    self,
    stage_name: &'static str,
    system: S
) -> Schedule where
    S: System<In = (), Out = ()>, 

pub fn set_run_criteria<S>(&mut self, system: S) -> &mut Schedule where
    S: System<In = (), Out = ShouldRun>, 

pub fn add_stage<S>(&mut self, name: &str, stage: S) -> &mut Schedule where
    S: Stage

pub fn add_stage_after<S>(
    &mut self,
    target: &str,
    name: &str,
    stage: S
) -> &mut Schedule where
    S: Stage

pub fn add_stage_before<S>(
    &mut self,
    target: &str,
    name: &str,
    stage: S
) -> &mut Schedule where
    S: Stage

pub fn add_system_to_stage<S>(
    &mut self,
    stage_name: &'static str,
    system: S
) -> &mut Schedule where
    S: System<In = (), Out = ()>, 

pub fn stage<T, F>(&mut self, name: &str, func: F) -> &mut Schedule where
    T: Stage,
    F: FnOnce(&mut T) -> &mut T, 

pub fn get_stage<T>(&self, name: &str) -> Option<&T> where
    T: Stage

pub fn get_stage_mut<T>(&mut self, name: &str) -> Option<&mut T> where
    T: Stage

pub fn run_once(&mut self, world: &mut World, resources: &mut Resources)

pub fn initialize_and_run(
    &mut self,
    world: &mut World,
    resources: &mut Resources
)

Trait Implementations

impl Default for Schedule

impl Stage for Schedule

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<T> FromResources for T where
    T: Default

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Resource for T where
    T: 'static + Send + Sync

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,