summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--src/index.js2
2 files changed, 5 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index b0a5c34..2ae5c56 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,4 @@
-/node_modules/
/dist/
+/node_modules/
+
+/.vscode/
diff --git a/src/index.js b/src/index.js
index 21d2af9..059ba68 100644
--- a/src/index.js
+++ b/src/index.js
@@ -119,6 +119,8 @@ RAPIER.init().then(() => {
objElement.style.width = `${objSize.x}px`;
objElement.style.height = `${objSize.y}px`;
+ eventQueue.free();
+
setTimeout(mainLoop, STEP_MS);
};