pub trait ProgressSystem<Params, T: ApplyProgress>: IntoSystem<(), T, Params> {
    // Required method
    fn track_progress(self) -> SystemConfigs;
}
Expand description

Extension trait for systems with progress tracking

Required Methods§

source

fn track_progress(self) -> SystemConfigs

Call this to add your system returning Progress to your App

This adds the functionality for tracking the returned Progress.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<S, T, Params> ProgressSystem<Params, T> for Swhere T: ApplyProgress + 'static, S: IntoSystem<(), T, Params>,