Spaces:
Sleeping
Sleeping
Scribbler310 commited on
Commit ·
ed26181
1
Parent(s): 8fb964b
Increase scramble steps to 10-15 random rotations
Browse files- src/App.jsx +1 -1
src/App.jsx
CHANGED
|
@@ -103,7 +103,7 @@ export default function App() {
|
|
| 103 |
setScrambling(true);
|
| 104 |
|
| 105 |
const dialIds = ["left", "top-right", "bottom-right"];
|
| 106 |
-
const steps =
|
| 107 |
let currentStep = 0;
|
| 108 |
|
| 109 |
const interval = setInterval(() => {
|
|
|
|
| 103 |
setScrambling(true);
|
| 104 |
|
| 105 |
const dialIds = ["left", "top-right", "bottom-right"];
|
| 106 |
+
const steps = 10 + Math.floor(Math.random() * 6); // 10 to 15 random dial rotations
|
| 107 |
let currentStep = 0;
|
| 108 |
|
| 109 |
const interval = setInterval(() => {
|