diff options
Diffstat (limited to 'app/components/tweaks')
-rw-r--r-- | app/components/tweaks/tweaks.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/components/tweaks/tweaks.tsx b/app/components/tweaks/tweaks.tsx index cfe658c..2a2e3d3 100644 --- a/app/components/tweaks/tweaks.tsx +++ b/app/components/tweaks/tweaks.tsx @@ -50,7 +50,7 @@ export const Tweaks = observer(function Tweaks(props: TweaksProps): JSX.Element step={1} /> <Text preset="fieldLabel" text={"Link Force: " + physics.linkStrength} /> <Slider style={{ height: 40, width: "90%" }} - minimumValue={0} + minimumValue={-2} maximumValue={2} onValueChange={(value) => { setPhysics({ ...physics, linkStrength: value }) }} value={physics.linkStrength} |