1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-25 04:42:01 +08:00
trois/src/materials/MatcapMaterial.js

22 lines
590 B
JavaScript
Raw Normal View History

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;
const opts = propsValues(this.$props, ['id', 'src', 'name']);
opts.matcap = new TextureLoader().load(src);
this.material = new MeshMatcapMaterial(opts);
},
},
__hmrId: 'MatcapMaterial',
};