diff options
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(); |