use actuate::prelude::{Mut, *}; use bevy::prelude::*; use bevy_mod_actuate::prelude::*; // Timer composable. #[derive(Data)] struct Timer; impl Compose for Timer { fn compose(cx: Scope) -> impl Compose { let current_time = use_mut(&cx, Time::default); // Use the `Time` resource from the ECS world, updating the `current_time`. use_world(&cx, move |time: Res