mirror of
https://github.com/troisjs/trois.git
synced 2024-11-23 20:02:32 +08:00
DRACO loader support
This commit is contained in:
parent
8c5dd149b9
commit
6aba3fa81d
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user