diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-07-15 19:30:13 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-07-15 19:30:13 +0200 |
commit | f07cb0d2745f59fe07254698402b160e7535c641 (patch) | |
tree | da44cab1034ebb5e547f90b90708c5d343c20ecc /app/screens/graph/graph-screen.tsx | |
parent | f430e26a3e553e31bc7e31f7b6d3339ceb0cac08 (diff) |
cleaned up tweak menu, added particle toggle
Diffstat (limited to 'app/screens/graph/graph-screen.tsx')
-rw-r--r-- | app/screens/graph/graph-screen.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/screens/graph/graph-screen.tsx b/app/screens/graph/graph-screen.tsx index 9dc7c90..289f371 100644 --- a/app/screens/graph/graph-screen.tsx +++ b/app/screens/graph/graph-screen.tsx @@ -11,6 +11,7 @@ import { Tweaks } from "../../components" import genRandomTree from "../../data/randomdata"; + const ROOT: ViewStyle = { backgroundColor: color.palette.black, flex: 1, @@ -34,7 +35,8 @@ export const GraphScreen = observer(function GraphScreen() { linkStrength: 1, linkIts: 1, collapse: false, - threedim: false + threedim: false, + particles: 2, }); const gData = genRandomTree(); |