作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人知道如何从 3d 模型获取 storageID
吗?似乎有这样的方法,但它一直告诉我无效的网址。谢谢!
io3d.storage.getIdFromUrl('https://spaces.archilogic.com/3d/Home_2766/grrodvuu?modelResourceId=cd36dc78-a124-4a4e-9990-35be32415f84')
最佳答案
我假设您正在寻找整个烘焙模型的存储 ID?
在这种情况下,您可以使用 Scene API 找到具有 bakedModelUrl
的子项,它是模型的存储 ID:
// this is the modelResourceId from the URL you gave in your question
io3d.scene.getStructure('cd36dc78-a124-4a4e-9990-35be32415f84')
// we select the children
.then(scene => scene.children)
// find the child that has a bakedModelUrl
.then(children => children.find(child => child.bakedModelUrl))
// read the bakedModelUrl
.then(level => level.bakedModelUrl)
// and log it (or do whatever you need to do with it)
.then(console.log)
关于aframe - 从 Url 获取 storageId,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48811840/
有人知道如何从 3d 模型获取 storageID 吗?似乎有这样的方法,但它一直告诉我无效的网址。谢谢! io3d.storage.getIdFromUrl('https://spaces.arch
我是一名优秀的程序员,十分优秀!