Open DeepUpRosenthal opened 3 months ago
UPDATE:
I found the findAll
-function under node_modules/@react-three/test-renderer/dist/react-three-test-renderer.cjs.dev.js which is responsible for iterating the tree. There in line 704 it uses root.allChildren.forEach
. Switched it to root.children.forEach
, which works.
Do you have any idea why?
My scene-graph (
renderer.toGraph()
):Now executing
scene.findByProps({ name: "MEASUREMENT-LINE" })
results in an error:This seems to be a bug.
My packages:
Node.js v20.15.0
Can you help me?