2

我正在尝试将远程资产(.glb 或 .gltf)加载到ModelViewerin 灯丝中。Google Filament sample-gltf-viewer显示了一个对象,RemoteServer但我没有看到如何从 URL 加载远程资产(例如https://github.com/kelvinwatson/glb-files/raw/main/DamagedHelmet.glb )

我已经尝试了以下方法,但我得到“无法解析 glb 文件”。

RemoteServer的代码没有指明我们可以在哪里传递 URL。

val glbUrl = "<URL TO YOUR GLB ASSET>"

private fun loadGlbRemote() {
    lifecycleScope.launch {
        withContext(Dispatchers.IO) {
        val url = URL(glbUrl)
        val connection = url.openConnection()
        connection.connect()
        val inputStream: InputStream = BufferedInputStream(url.openStream())
        val len = connection.contentLength
        val byteArray = ByteArray(len)
        inputStream.read(byteArray, 0, byteArray.size)
        val byteBuffer = ByteBuffer.wrap(byteArray)
        modelViewer.loadModelGlb(byteBuffer)
        inputStream.close()
    }
implementation 'com.google.android.filament:filament-android:1.7.0'
implementation 'com.google.android.filament:filament-utils-android:1.7.0'
implementation 'com.google.android.filament:gltfio-android:1.7.0'`

任何帮助,将不胜感激。

4

1 回答 1

0

问题已解决。问题是我没有完全下载文件,modelViewer.loadModelGlb需要在主线程上调用。

这是工作代码:

val glbUrl = "<URL TO YOUR GLB ASSET>"
URL(glbUrl).openStream().use { inputStream: InputStream ->
    val inputStream = BufferedInputStream(inputStream)
    ByteArrayOutputStream().use {  output->
        inputStream.copyTo(output)
        val byteArr = output.toByteArray()
        val byteBuffer = ByteBuffer.wrap(byteArr)
        val rewound = byteBuffer.rewind()
        withContext(Dispatchers.Main) {
            modelViewer.destroyModel()
            modelViewer.loadModelGlb(rewound)
            modelViewer.transformToUnitCube()

解决方案已包含在提交的问题中:https ://github.com/google/filament/issues/5255

于 2022-02-24T19:58:53.333 回答