vasturiano / 3d-force-graph

3D force-directed graph component using ThreeJS/WebGL

Home Page:https://vasturiano.github.io/3d-force-graph/example/large-graph/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to disable default link

ReadyPlayer67 opened this issue · comments

I want to create custom link with linkThreeObject method and disable default link at the same time. But I can not disable default link.
Here is my demo and code: https://playcode.io/1473058

linkThreeObjectExtend(false), which is already the default. So you're probably overriding it.

linkThreeObjectExtend(false), which is already the default. So you're probably overriding it.

Your meaning is that I should try using the linkThreeObjectExtend(false) first and then use linkThreeObject() to override default link?