使用 COLLADA DOM 获取下一个同名标签

发布于 2024-10-15 09:21:18 字数 122 浏览 2 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蹲墙角沉默 2024-10-22 09:21:18

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文