OliHas
OliHas
I think this could help: [GLTFLoader: Fixes to improve mesh name uniqueness.](https://github.com/mrdoob/three.js/commit/8c3cfb5798fc5ee98d17ee3d2a36862a3f6e52d3) I recommend to store the IfcProduct id here: `primitive[].extras ` This becomes in three.js: `mesh[].userData`
Hi! It is possible to pass data if this is inserted into the code "BinaryGltfSerializer2.java" at line [558](https://github.com/opensourceBIM/GltfSerializers/blob/master/Gltf/src/org/bimserver/gltf/BinaryGltfSerializer2.java#L558): ``` ObjectNode extrasNode = OBJECT_MAPPER.createObjectNode(); nodeNode.set("extras", extrasNode); extrasNode.put("IfcProductID", IfcProductID); ``` How do...