2020-10-04 17:23:02 +08:00
|
|
|
import { MeshMatcapMaterial, TextureLoader } from 'three';
|
|
|
|
// import { watch } from 'vue';
|
|
|
|
import { propsValues, getMatcapUrl } from '../tools.js';
|
|
|
|
import Material from './Material';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
extends: Material,
|
|
|
|
props: {
|
|
|
|
src: String,
|
|
|
|
name: String,
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
createMaterial() {
|
|
|
|
const src = this.name ? getMatcapUrl(this.name) : this.src;
|
2021-03-07 06:14:22 +08:00
|
|
|
const opts = propsValues(this.$props, ['src', 'name']);
|
2020-10-04 17:23:02 +08:00
|
|
|
opts.matcap = new TextureLoader().load(src);
|
|
|
|
this.material = new MeshMatcapMaterial(opts);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
__hmrId: 'MatcapMaterial',
|
|
|
|
};
|