gpt4 book ai didi

aframe - 从 Url 获取 storageId

转载 作者:行者123 更新时间:2023-12-01 15:04:39 25 4
gpt4 key购买 nike

有人知道如何从 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com