draw
draw copied to clipboard
Disable animation in "Fast draw"
Hi, first of all thank you @inker for sharing this project.
I'm trying to simulate locally many different draws to estimate group probabilities.
The main bottleneck I'm finding are the animations in "Fast draw". Is there any way to disable them to allow for faster sims?
Thanks in advance
@LourencoVazPato
Currently, the only way to disable transitions is by patching the code manually.
- Open the browser's dev tools. For Chrome, it's
Option + ⌘ + J(on macOS) orShift + CTRL + J(on Windows/Linux). - Go to the 'Console' tab.
- Type the following:
const s = document.createElement('style');
s.textContent = 'body * { transition: none !important }';
document.head.append(s);
- Press 'Enter'
(Close the dev tools) Transitions are gone.
I might add an option to disable all UI in the future.
I can work in this feature if you want!