39 lines
638 B
JavaScript
39 lines
638 B
JavaScript
import NodeMaterial from './NodeMaterial.js';
|
|
import ShadowMaskModel from '../../nodes/functions/ShadowMaskModel.js';
|
|
|
|
import { ShadowMaterial } from '../ShadowMaterial.js';
|
|
|
|
const _defaultValues = /*@__PURE__*/ new ShadowMaterial();
|
|
|
|
class ShadowNodeMaterial extends NodeMaterial {
|
|
|
|
static get type() {
|
|
|
|
return 'ShadowNodeMaterial';
|
|
|
|
}
|
|
|
|
constructor( parameters ) {
|
|
|
|
super();
|
|
|
|
this.isShadowNodeMaterial = true;
|
|
|
|
this.lights = true;
|
|
|
|
this.setDefaultValues( _defaultValues );
|
|
|
|
this.setValues( parameters );
|
|
|
|
}
|
|
|
|
setupLightingModel( /*builder*/ ) {
|
|
|
|
return new ShadowMaskModel();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export default ShadowNodeMaterial;
|