From 7df210c4d82c418a5c6eb5581f77592d758f8d13 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Wed, 25 Jun 2025 08:57:51 +0530 Subject: [PATCH] chore: disable sleeping Signed-off-by: Ameya Shenoy --- frontend/src/components/PhysicsSimulation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/PhysicsSimulation.tsx b/frontend/src/components/PhysicsSimulation.tsx index 8579127..578503d 100644 --- a/frontend/src/components/PhysicsSimulation.tsx +++ b/frontend/src/components/PhysicsSimulation.tsx @@ -72,7 +72,7 @@ export function World() { } = Matter; const engine = Engine.create(); engine.gravity.y = 1; - engine.enableSleeping = true; + engine.enableSleeping = false; const render = Render.create({ element: container,