使用 COLLADA DOM 获取下一个同名标签
我使用 COLLADA DOM 访问 .dae 文件中的数据,并且有多个名为 float_array 的标签...我可以使用 getDecendant("float_array") 访问第一个标签,但是我如何访问下一个法线和纹理?
Im using COLLADA DOM to access the data in a .dae file and there are multiple tags called float_array... i can access the first using getDecendant("float_array") but how would i access the next for the normals and textures??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
dae.getDatabase()->idLookup("Cube-Geometry-Position-array", root->getDocument());
找到了 idLookup 方法,因此不要搜索元素名称,而是搜索其 ID,因为所有 ID 都是单独的
dae.getDatabase()->idLookup("Cube-Geometry-Position-array", root->getDocument());
Found the idLookup method so instead of searching for an element name, search for its ID as all ID's are individual