Получение идентификатора хранилища от URL
Кто-нибудь знает из 3d модели, как достать storageID
? Кажется, есть такой метод, но он постоянно сообщает мне неверный URL. Спасибо!
io3d.storage.getIdFromUrl('https://spaces.archilogic.com/3d/Home_2766/grrodvuu?modelResourceId=cd36dc78-a124-4a4e-9990-35be32415f84')
1 ответ
Решение
Я полагаю, вы ищете идентификатор хранилища всей испеченной модели?
В этом случае вы можете использовать API Scene, чтобы найти ребенка с bakedModelUrl
который является идентификатором хранилища модели:
// 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)