gltfNode structure as output & for loop over that output #174
-
I need to extract all the nodes from glft file, it is exhausting to extract every separate node from structure when you have 1000 geometry in glft file, and it would be great if there block for iterating over the output from structure for x in structure: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
gltfscene has a json output port which contains an array of all nodes (e.g. name of the node) which can be iterated over. what do you want to do with the nodes/geometries ? |
Beta Was this translation helpful? Give feedback.
gltfscene has a json output port which contains an array of all nodes (e.g. name of the node) which can be iterated over.
you then could extracted the name to use it with gltfnode to draw it...
what do you want to do with the nodes/geometries ?