Expand description
Common run conditions
Functions§
- on_
real_ timer - Run condition that is active on a regular time interval,
using
Time<Real>
to advance the timer. The timer ticks are not scaled. - on_
timer - 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
. - once_
after_ delay - 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
. - once_
after_ real_ delay - Run condition that is active once after the specified delay,
using
Time<Real>
to advance the timer. The timer ticks are not scaled. - paused
- 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. - repeating_
after_ delay - 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
. - repeating_
after_ real_ delay - Run condition that is active indefinitely after the specified delay,
using
Time<Real>
to advance the timer. The timer ticks are not scaled.