mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 20:32:02 +08:00
12 lines
216 B
JavaScript
12 lines
216 B
JavaScript
|
import { MeshBasicMaterial } from 'three';
|
||
|
import Material from './Material';
|
||
|
|
||
|
export default {
|
||
|
extends: Material,
|
||
|
created() {
|
||
|
this.material = new MeshBasicMaterial({
|
||
|
color: this.color,
|
||
|
});
|
||
|
},
|
||
|
};
|