Skip to content

Instantly share code, notes, and snippets.

@syuji-higa
Last active November 16, 2019 04:26
Show Gist options
  • Save syuji-higa/d97148e156dab24e6f6f1e69f24b4882 to your computer and use it in GitHub Desktop.
Save syuji-higa/d97148e156dab24e6f6f1e69f24b4882 to your computer and use it in GitHub Desktop.
JavaScript - @loaders.gl load glTF
import { load } from '@loaders.gl/core'
import { GLTFLoader, postProcessGLTF } from '@loaders.gl/gltf'
;(async () => {
const gltfData = await load('model.gltf', GLTFLoader, {
uri: '/',
gltf: {
parserVersion: 2
}
})
const processedGLTF = postProcessGLTF(gltfData)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment