File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -191,10 +191,10 @@ export const GraphCanvas: FC<GraphCanvasProps & { ref?: Ref<GraphCanvasRef> }> =
191191 return (
192192 < div className = { css . canvas } >
193193 < Canvas
194- legacy = { ! useInstances }
195- linear = { ! useInstances }
194+ legacy
195+ linear
196196 ref = { canvasRef }
197- flat = { ! useInstances }
197+ flat
198198 gl = { gl }
199199 camera = { CAMERA_DEFAULTS }
200200 onPointerMissed = { onCanvasClick }
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ if (typeof window !== 'undefined') {
142142interface OptimizedTextProps {
143143 nodes : InternalGraphNode [ ] ;
144144 selections ?: string [ ] ;
145+ draggingIds ?: string [ ] ;
145146 actives ?: string [ ] ;
146147 animated ?: boolean ;
147148 fontSize ?: number ;
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ const ringToInstance = (
6868 selections ,
6969 instance . isDragging
7070 ) ;
71- instance . opacity = 1 ;
71+ instance . opacity = 0.8 ;
7272} ;
7373
7474export const InstancedBillboardRings = forwardRef <
You can’t perform that action at this time.
0 commit comments