fix physics worker output

This commit is contained in:
Quaternions 2023-10-24 19:09:55 -07:00
parent b7844bb308
commit 5d9308eccc

View File

@ -105,7 +105,7 @@ pub enum InputInstruction {
} }
} }
if render{ if render{
graphics_worker.send(TimedInstruction{time:ins.time,instruction:crate::graphics_worker::GraphicsInstruction::Render}); graphics_worker.send(crate::graphics_worker::GraphicsInstruction::Render(physics.output(),ins.time));
} }
}) })
} }