RawShaderMaterial.js 451 B

123456789101112131415161718192021
  1. import { ShaderMaterial } from './ShaderMaterial.js';
  2. /**
  3. * @author mrdoob / http://mrdoob.com/
  4. */
  5. function RawShaderMaterial( parameters ) {
  6. ShaderMaterial.call( this, parameters );
  7. this.type = 'RawShaderMaterial';
  8. }
  9. RawShaderMaterial.prototype = Object.create( ShaderMaterial.prototype );
  10. RawShaderMaterial.prototype.constructor = RawShaderMaterial;
  11. RawShaderMaterial.prototype.isRawShaderMaterial = true;
  12. export { RawShaderMaterial };