three
Version:
JavaScript 3D library
22 lines (12 loc) • 451 B
JavaScript
import { ShaderMaterial } from './ShaderMaterial.js';
/**
* @author mrdoob / http://mrdoob.com/
*/
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 };