fix spacing

This commit is contained in:
reo 2025-10-16 16:11:53 +03:00
parent ef055a1bda
commit b86bbdd237

View file

@ -65,8 +65,9 @@ impl System for RenderingTestSystem {
} }
fn frame_update(&mut self, res: &mut EngineResources, scene: &mut Scene) { fn frame_update(&mut self, res: &mut EngineResources, scene: &mut Scene) {
let pctx = res.get::<PlatformContext>().unwrap().clone(); let pctx = res.get::<PlatformContext>().unwrap();
let dbg_ui = scene.resources.get_mut::<DebugUIBuffer>().unwrap(); let dbg_ui = scene.resources.get_mut::<DebugUIBuffer>().unwrap();
dbg_ui.text("Hello World!".to_owned()); dbg_ui.text("Hello World!".to_owned());
dbg_ui.text(format!("Frame Delta: {}", pctx.time_ctx.frame_dt)); 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!("Fixed Delta: {}", pctx.time_ctx.fixed_dt));
@ -75,6 +76,7 @@ impl System for RenderingTestSystem {
fn fixed_update(&mut self, res: &mut EngineResources, scene: &mut Scene) { fn fixed_update(&mut self, res: &mut EngineResources, scene: &mut Scene) {
let pctx = res.get::<PlatformContext>().unwrap(); let pctx = res.get::<PlatformContext>().unwrap();
scene.world.query_mut::<(&mut Transform, &ModelHandle)>().into_iter().for_each(|(_, (t, _))| { scene.world.query_mut::<(&mut Transform, &ModelHandle)>().into_iter().for_each(|(_, (t, _))| {
t.rotation *= Quat::from_rotation_y(*self.rotation_speed.borrow() * pctx.time_ctx.fixed_dt); t.rotation *= Quat::from_rotation_y(*self.rotation_speed.borrow() * pctx.time_ctx.fixed_dt);
}); });