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

14 lines
324 B
JavaScript
Raw Normal View History

2020-09-14 22:57:11 +08:00
import { MeshLambertMaterial } from 'three';
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-10-03 18:34:14 +08:00
methods: {
createMaterial() {
this.material = new MeshLambertMaterial(propsValues(this.$props, ['id']));
},
2020-09-14 22:57:11 +08:00
},
2020-09-19 23:00:29 +08:00
__hmrId: 'LambertMaterial',
2020-09-14 22:57:11 +08:00
};