如何通过存储 API 从我上传的 3d 模型中获取 .data3d.buffer
How can I get the .data3d.buffer from my uploaded 3d model through storage API
我可以通过存储上传我的 3d 模型 api。但是我无法从存储 api 中获取 .data3d.buffer。我发现 .data3d.buffer 是 aframe 加载 3d 模型所必需的。如何通过存储 api 获取 .data3d.buffer?
如果您有存储密钥,可以直接从storage.3d.io
下载模型。
示例:
io3d.storage.put(myFile).then(function (storageKey) {
console.log('the data3d.buffer is now at', 'https://storage.3d.io' + storageKey)
})
请注意,该文件将有一个 .gz.data3d.buffer
,因为浏览器将在下载时解压缩打包的资产。您可能必须删除 .gz
才能直接使用该文件。
Storage API可以直接使用,但是会自动帮你把二进制文件解析成JSON。
要在 A-Frame 中使用模型,您只需要存储密钥(在浏览器中):
io3d.storage.put(myFile).then(function (storageKey) {
var model = document.createElement('a-entity')
model.setAttribute('io3d-data3d', 'key: ' + storageKey)
document.querySelector('a-scene').appendChild(model)
})
我可以通过存储上传我的 3d 模型 api。但是我无法从存储 api 中获取 .data3d.buffer。我发现 .data3d.buffer 是 aframe 加载 3d 模型所必需的。如何通过存储 api 获取 .data3d.buffer?
如果您有存储密钥,可以直接从storage.3d.io
下载模型。
示例:
io3d.storage.put(myFile).then(function (storageKey) {
console.log('the data3d.buffer is now at', 'https://storage.3d.io' + storageKey)
})
请注意,该文件将有一个 .gz.data3d.buffer
,因为浏览器将在下载时解压缩打包的资产。您可能必须删除 .gz
才能直接使用该文件。
Storage API可以直接使用,但是会自动帮你把二进制文件解析成JSON。
要在 A-Frame 中使用模型,您只需要存储密钥(在浏览器中):
io3d.storage.put(myFile).then(function (storageKey) {
var model = document.createElement('a-entity')
model.setAttribute('io3d-data3d', 'key: ' + storageKey)
document.querySelector('a-scene').appendChild(model)
})