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

Extension trait for systems with progress tracking

Required Methods

Call this to add your system returning [Progress] to your App

This adds the functionality for tracking the returned Progress.

Implementors