Spaces:
Running
Running
File size: 524 Bytes
2b7aae2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | import { Material } from './Material.js';
import { Color } from '../math/Color.js';
/**
* parameters = {
* color: <THREE.Color>
* }
*/
class ShadowMaterial extends Material {
constructor(parameters) {
super();
this.type = 'ShadowMaterial';
this.color = new Color(0x000000);
this.transparent = true;
this.setValues(parameters);
}
copy(source) {
super.copy(source);
this.color.copy(source.color);
return this;
}
}
ShadowMaterial.prototype.isShadowMaterial = true;
export { ShadowMaterial };
|