physics on by default

This commit is contained in:
Orion Reed 2024-03-25 00:33:23 -07:00
parent 3423aeeeb6
commit a9e29ae196
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ export const SimController = ({ shapes }: { shapes: TLUnknownShape[] }) => {
}, []);
const { addShapes } = usePhysicsSimulation(editor, false);
const { addShapes } = usePhysicsSimulation(editor, true);
return (<></>);
};