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

39 lines
846 B
JavaScript
Raw Normal View History

2020-09-20 00:54:50 +08:00
import { Color, MeshStandardMaterial } from 'three';
import { watch } from 'vue';
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: {
emissive: {
type: [Number, String],
default: 0,
},
emissiveIntensity: {
type: Number,
default: 1,
},
metalness: {
type: Number,
default: 0,
},
roughness: {
type: Number,
default: 1,
},
},
2020-09-14 22:57:11 +08:00
created() {
2020-09-17 03:11:23 +08:00
this.material = new MeshStandardMaterial(this.propsValues());
2020-09-20 00:54:50 +08:00
['emissive', 'emissiveIntensity', 'metalness', 'roughness'].forEach(p => {
watch(() => this[p], () => {
if (p === 'emissive') {
this.material.emissive = new Color(this.emissive);
} else {
this.material[p] = this[p];
}
});
});
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
};