#Custom schedules

5 messages · Page 1 of 1 (latest)

urban loom
#

Is there a way to add a new scheduler? The goal is to be able to execute some stuff at a lower frequency than usual (i.e. update things which don't usually change at 5-15hz). Any docs or code examples would be helpful.

spare wigeon
# urban loom Is there a way to add a new scheduler? The goal is to be able to execute some st...
GitHub

In the Bevy Examples here, it shows how to have systems running in the same fixed time step: use bevy::prelude::*; fn main() { App::new() .add_plugins(DefaultPlugins) .add_systems(FixedUpdate, fixe...

spiral kite
spare wigeon
spiral kite