diff options
Diffstat (limited to 'app/components/tweaks/tweaks.tsx')
-rw-r--r-- | app/components/tweaks/tweaks.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/components/tweaks/tweaks.tsx b/app/components/tweaks/tweaks.tsx index 49754d0..e52e587 100644 --- a/app/components/tweaks/tweaks.tsx +++ b/app/components/tweaks/tweaks.tsx @@ -193,6 +193,10 @@ export const Tweaks = observer(function Tweaks(props: TweaksProps): JSX.Element value={physics.threedim} onValueChange={() => { setPhysics({ ...physics, threedim: !physics.threedim }) }} /> + <Switch style={{ width: "5", height: 20, marginVertical: 10 }} + value={physics.local} + onValueChange={() => { setPhysics({ ...physics, local: !physics.local }) }} + /> </View> }, ]; |