12345678910111213141516171819202122232425262728293031323334 |
- import NodeMaterial, { addNodeMaterial } from './NodeMaterial.js';
- import ShadowMaskModel from '../functions/ShadowMaskModel.js';
- import { ShadowMaterial } from 'three';
- const defaultValues = new ShadowMaterial();
- class ShadowNodeMaterial extends NodeMaterial {
- constructor( parameters ) {
- super();
- this.isShadowNodeMaterial = true;
- this.lights = true;
- this.setDefaultValues( defaultValues );
- this.setValues( parameters );
- }
- setupLightingModel( /*builder*/ ) {
- return new ShadowMaskModel();
- }
- }
- export default ShadowNodeMaterial;
- addNodeMaterial( 'ShadowNodeMaterial', ShadowNodeMaterial );
|