Revert "differentiate between constant/variable stroke type"

This reverts commit 0199c82e98.
This commit is contained in:
dwelle
2025-07-08 23:44:54 +02:00
parent 34bff557e3
commit 446f871536
3 changed files with 21 additions and 62 deletions

View File

@@ -8,10 +8,10 @@ import { round } from "../../packages/math/src";
export const FreedrawDebugSliders = () => {
const [streamline, setStreamline] = useState<number>(
DRAWING_CONFIGS.default.variable.streamline,
DRAWING_CONFIGS.default.streamline,
);
const [simplify, setSimplify] = useState<number>(
DRAWING_CONFIGS.default.variable.simplify,
DRAWING_CONFIGS.default.simplify,
);
useEffect(() => {
@@ -21,7 +21,7 @@ export const FreedrawDebugSliders = () => {
if (!window.h.debugFreedraw) {
window.h.debugFreedraw = {
enabled: true,
...DRAWING_CONFIGS.default.variable,
...DRAWING_CONFIGS.default,
};
}