24 lines
538 B
JavaScript
24 lines
538 B
JavaScript
/**
|
|
* @author mrdoob / http://mrdoob.com/
|
|
*/
|
|
|
|
THREE.RawShaderMaterial = function ( parameters ) {
|
|
|
|
THREE.ShaderMaterial.call( this, parameters );
|
|
|
|
this.type = 'RawShaderMaterial';
|
|
|
|
};
|
|
|
|
THREE.RawShaderMaterial.prototype = Object.create( THREE.ShaderMaterial.prototype );
|
|
THREE.RawShaderMaterial.prototype.constructor = THREE.RawShaderMaterial;
|
|
|
|
THREE.RawShaderMaterial.prototype.clone = function () {
|
|
|
|
var material = new THREE.RawShaderMaterial();
|
|
|
|
THREE.ShaderMaterial.prototype.clone.call( this, material );
|
|
|
|
return material;
|
|
|
|
};
|