Module bevy_time::common_conditions
source · Expand description
Common run conditions
Functions§
- Run condition that is active on a regular time interval, using
Time<Real>
to advance the timer. The timer ticks are not scaled. - Run condition that is active on a regular time interval, using
Time
to advance the timer. The timer ticks at the rate ofTime::relative_speed
. - Run condition that is active once after the specified delay, using
Time
to advance the timer. The timer ticks at the rate ofTime::relative_speed
. - Run condition that is active once after the specified delay, using
Time<Real>
to advance the timer. The timer ticks are not scaled. - Run condition that is active when the
Time<Virtual>
clock is paused. Usebevy_ecs::schedule::common_conditions::not
to make it active when it’s not paused. - Run condition that is active indefinitely after the specified delay, using
Time
to advance the timer. The timer ticks at the rate ofTime::relative_speed
. - Run condition that is active indefinitely after the specified delay, using
Time<Real>
to advance the timer. The timer ticks are not scaled.