| 1234567891011121314151617 |
- import { ShaderMaterial } from './ShaderMaterial.js';
- function RawShaderMaterial( parameters ) {
- ShaderMaterial.call( this, parameters );
- this.type = 'RawShaderMaterial';
- }
- RawShaderMaterial.prototype = Object.create( ShaderMaterial.prototype );
- RawShaderMaterial.prototype.constructor = RawShaderMaterial;
- RawShaderMaterial.prototype.isRawShaderMaterial = true;
- export { RawShaderMaterial };
|