1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-23 20:02:32 +08:00

Merge pull request #185 from kartsims/feature/draco-loader

DRACO loader support
This commit is contained in:
Kevin LEVRON 2023-04-07 16:11:59 +02:00 committed by GitHub
commit a1b1239809
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,20 @@
import { defineComponent } from 'vue'
import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js'
import { DRACOLoader } from 'three/examples/jsm/loaders/DRACOLoader.js'
import Model from './Model'
export default defineComponent({
extends: Model,
props: {
dracoPath: { type: String, required: true },
},
created() {
const loader = new GLTFLoader()
if (this.dracoPath) {
const dracoLoader = new DRACOLoader()
dracoLoader.setDecoderPath(this.dracoPath)
loader.setDRACOLoader(dracoLoader)
}
this.$emit('before-load', loader)
loader.load(this.src, (gltf) => {
this.onLoad(gltf)