UNPKG

451 BJavaScriptView Raw
1import { ShaderMaterial } from './ShaderMaterial.js';
2
3/**
4 * @author mrdoob / http://mrdoob.com/
5 */
6
7function RawShaderMaterial( parameters ) {
8
9 ShaderMaterial.call( this, parameters );
10
11 this.type = 'RawShaderMaterial';
12
13}
14
15RawShaderMaterial.prototype = Object.create( ShaderMaterial.prototype );
16RawShaderMaterial.prototype.constructor = RawShaderMaterial;
17
18RawShaderMaterial.prototype.isRawShaderMaterial = true;
19
20
21export { RawShaderMaterial };