diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-08-05 22:25:21 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-08-05 22:25:21 +0200 |
commit | d1a7d3c00a603cb774697e49696e9a0d2c4661b9 (patch) | |
tree | b54bba45833922b2ed6384504411babb150c1723 /components/tweaks.tsx | |
parent | 54507855a316df0a428119093a16c5e5180fc56d (diff) |
feature: added slider for node scale
Diffstat (limited to 'components/tweaks.tsx')
-rw-r--r-- | components/tweaks.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/components/tweaks.tsx b/components/tweaks.tsx index 9ff994e..bed075f 100644 --- a/components/tweaks.tsx +++ b/components/tweaks.tsx @@ -711,6 +711,13 @@ export const Tweaks = (props: TweakProps) => { value={visuals.nodeRel} onChange={(value) => setVisuals({ ...visuals, nodeRel: value })} /> + <SliderWithInfo + label="Node connections size scale" + value={visuals.nodeSizeLinks} + min={0} + max={2} + onChange={(value) => setVisuals({ ...visuals, nodeSizeLinks: value })} + /> {threeDim && ( <> <SliderWithInfo |