From 1a80c4e73d905ff44d31ffee29a7091720355884 Mon Sep 17 00:00:00 2001 From: CJSatnarine Date: Mon, 28 Apr 2025 20:35:43 -0400 Subject: [PATCH] remove requestAniamtionFrame function from the animate function --- static/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/main.js b/static/main.js index da6ffc4..295605c 100644 --- a/static/main.js +++ b/static/main.js @@ -71,5 +71,5 @@ function animate() { let degrees = -0.5; modelObject.rotateY(degrees * (Math.PI / 180)); renderer.render(scene, camera); - requestAnimationFrame(animate); + //requestAnimationFrame(animate); // idk why this made things spin out of control lmao }