1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 12:22:03 +08:00
trois/src/materials/PhongMaterial.js

37 lines
1.1 KiB
JavaScript
Raw Normal View History

2020-09-14 22:57:11 +08:00
import { MeshPhongMaterial } from 'three';
2020-10-04 16:22:26 +08:00
import { watch } from 'vue';
2021-03-25 21:24:30 +08:00
import { bindProps, propsValues } from '../tools';
2021-03-13 23:41:01 +08:00
import Material, { wireframeProps } from './Material';
2020-09-14 22:57:11 +08:00
export default {
extends: Material,
2020-10-04 16:22:26 +08:00
props: {
emissive: { type: [Number, String], default: 0 },
emissiveIntensity: { type: Number, default: 1 },
reflectivity: { type: Number, default: 1 },
shininess: { type: Number, default: 30 },
specular: { type: [String, Number], default: 0x111111 },
2021-03-13 06:54:55 +08:00
flatShading: Boolean,
2021-03-13 23:41:01 +08:00
...wireframeProps,
2020-10-04 16:22:26 +08:00
},
2020-10-03 18:34:14 +08:00
methods: {
createMaterial() {
2021-03-07 06:14:22 +08:00
this.material = new MeshPhongMaterial(propsValues(this.$props));
2020-10-03 18:34:14 +08:00
},
2020-10-04 16:22:26 +08:00
addWatchers() {
2021-03-13 06:54:55 +08:00
// TODO : handle flatShading ?
2020-10-04 16:22:26 +08:00
['emissive', 'emissiveIntensity', 'reflectivity', 'shininess', 'specular'].forEach(p => {
watch(() => this[p], (value) => {
if (p === 'emissive' || p === 'specular') {
this.material[p].set(value);
} else {
this.material[p] = value;
}
});
});
2021-03-13 23:41:01 +08:00
bindProps(this, Object.keys(wireframeProps), this.material);
2020-10-04 16:22:26 +08:00
},
2020-09-14 22:57:11 +08:00
},
2020-09-19 23:00:29 +08:00
__hmrId: 'PhongMaterial',
2020-09-14 22:57:11 +08:00
};