Replace Contexts with Resources #7

Merged
reo merged 5 commits from 2025-10-15-resources into master 2025-10-19 14:24:22 +00:00
Showing only changes of commit 5f3da6ab99 - Show all commits

View file

@ -71,6 +71,7 @@ impl System for RenderingTestSystem {
dbg_ui.text("Hello World!".to_owned());
dbg_ui.text(format!("Frame Delta: {}", pctx.time_ctx.frame_dt));
dbg_ui.text(format!("Fixed Delta: {}", pctx.time_ctx.fixed_dt));
dbg_ui.text(format!("FPS: {}", 1.0 / pctx.time_ctx.frame_dt));
dbg_ui.slider_f32("Rotation Speed", -10.0, 10.0, self.rotation_speed.clone());
}