123456789101112131415161718192021222324 |
- /**
- * @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();
- material.copy( this );
- return material;
- };
|