summaryrefslogtreecommitdiff
path: root/app/components/tweaks
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/tweaks')
-rw-r--r--app/components/tweaks/tweaks.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/components/tweaks/tweaks.tsx b/app/components/tweaks/tweaks.tsx
index 8913e98..a67b723 100644
--- a/app/components/tweaks/tweaks.tsx
+++ b/app/components/tweaks/tweaks.tsx
@@ -102,6 +102,11 @@ export const Tweaks = observer(function Tweaks(props: TweaksProps): JSX.Element
onValueChange={(value) => { setPhysics({ ...physics, velocityDecay: value }) }}
value={physics.velocityDecay}
step={0.01} />
+ <Text preset="fieldLabel" text={"Galaxy Mode (3D-only)"} />
+ <Switch style={{ width: "5", height: 20, marginVertical: 10 }}
+ value={physics.galaxy}
+ onValueChange={() => { setPhysics({ ...physics, galaxy: !physics.galaxy }) }}
+ />
</View>,
},
{