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

32 lines
906 B
JavaScript
Raw Normal View History

2020-09-20 00:54:50 +08:00
import { Color, MeshStandardMaterial } from 'three';
import { watch } from 'vue';
2020-10-02 00:22:01 +08:00
import { propsValues } from '../tools.js';
2020-09-14 22:57:11 +08:00
import Material from './Material';
export default {
extends: Material,
2020-09-17 03:11:23 +08:00
props: {
2020-10-02 00:22:01 +08:00
emissive: { type: [Number, String], default: 0 },
emissiveIntensity: { type: Number, default: 1 },
metalness: { type: Number, default: 0 },
roughness: { type: Number, default: 1 },
2020-09-17 03:11:23 +08:00
},
2020-10-03 18:34:14 +08:00
methods: {
createMaterial() {
this.material = new MeshStandardMaterial(propsValues(this.$props, ['id']));
},
addWatchers() {
['emissive', 'emissiveIntensity', 'metalness', 'roughness'].forEach(p => {
watch(() => this[p], (value) => {
if (p === 'emissive') {
this.material.emissive = new Color(value);
} else {
this.material[p] = value;
}
});
2020-09-20 00:54:50 +08:00
});
2020-10-03 18:34:14 +08:00
},
2020-09-14 22:57:11 +08:00
},
2020-09-19 23:00:29 +08:00
__hmrId: 'StandardMaterial',
2020-09-14 22:57:11 +08:00
};