123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /**
- * @author mrdoob / http://mrdoob.com/
- * @author alteredq / http://alteredqualia.com/
- *
- * parameters = {
- * color: <hex>,
- * ambient: <hex>,
- * emissive: <hex>,
- * specular: <hex>,
- * shininess: <float>,
- * opacity: <float>,
- *
- * map: new THREE.Texture( <Image> ),
- *
- * lightMap: new THREE.Texture( <Image> ),
- *
- * bumpMap: new THREE.Texture( <Image> ),
- * bumpScale: <float>,
- *
- * normalMap: new THREE.Texture( <Image> ),
- * normalScale: <Vector2>,
- *
- * specularMap: new THREE.Texture( <Image> ),
- *
- * envMap: new THREE.TextureCube( [posx, negx, posy, negy, posz, negz] ),
- * combine: THREE.Multiply,
- * reflectivity: <float>,
- * refractionRatio: <float>,
- *
- * shading: THREE.SmoothShading,
- * blending: THREE.NormalBlending,
- * depthTest: <bool>,
- *
- * wireframe: <boolean>,
- * wireframeLinewidth: <float>,
- *
- * vertexColors: THREE.NoColors / THREE.VertexColors / THREE.FaceColors,
- *
- * skinning: <bool>,
- * morphTargets: <bool>,
- * morphNormals: <bool>,
- *
- * fog: <bool>
- * }
- */
- THREE.MeshPhongMaterial = function ( parameters ) {
- THREE.Material.call( this );
- this.color = new THREE.Color( 0xffffff ); // diffuse
- this.ambient = new THREE.Color( 0xffffff );
- this.emissive = new THREE.Color( 0x000000 );
- this.specular = new THREE.Color( 0x111111 );
- this.shininess = 30;
- this.metal = false;
- this.perPixel = true;
- this.wrapAround = false;
- this.wrapRGB = new THREE.Vector3( 1, 1, 1 );
- this.map = null;
- this.lightMap = null;
- this.bumpMap = null;
- this.bumpScale = 1;
- this.normalMap = null;
- this.normalScale = new THREE.Vector2( 1, 1 );
- this.specularMap = null;
- this.envMap = null;
- this.combine = THREE.MultiplyOperation;
- this.reflectivity = 1;
- this.refractionRatio = 0.98;
- this.fog = true;
- this.shading = THREE.SmoothShading;
- this.wireframe = false;
- this.wireframeLinewidth = 1;
- this.wireframeLinecap = 'round';
- this.wireframeLinejoin = 'round';
- this.vertexColors = THREE.NoColors;
- this.skinning = false;
- this.morphTargets = false;
- this.morphNormals = false;
- this.setValues( parameters );
- };
- THREE.MeshPhongMaterial.prototype = Object.create( THREE.Material.prototype );
- THREE.MeshPhongMaterial.prototype.clone = function () {
- var material = new THREE.MeshPhongMaterial();
- THREE.Material.prototype.clone.call( this, material );
- material.color.copy( this.color );
- material.ambient.copy( this.ambient );
- material.emissive.copy( this.emissive );
- material.specular.copy( this.specular );
- material.shininess = this.shininess;
- material.metal = this.metal;
- material.perPixel = this.perPixel;
- material.wrapAround = this.wrapAround;
- material.wrapRGB.copy( this.wrapRGB );
- material.map = this.map;
- material.lightMap = this.lightMap;
- material.bumpMap = this.bumpMap;
- material.bumpScale = this.bumpScale;
- material.normalMap = this.normalMap;
- material.normalScale.copy( this.normalScale );
- material.specularMap = this.specularMap;
- material.envMap = this.envMap;
- material.combine = this.combine;
- material.reflectivity = this.reflectivity;
- material.refractionRatio = this.refractionRatio;
- material.fog = this.fog;
- material.shading = this.shading;
- material.wireframe = this.wireframe;
- material.wireframeLinewidth = this.wireframeLinewidth;
- material.wireframeLinecap = this.wireframeLinecap;
- material.wireframeLinejoin = this.wireframeLinejoin;
- material.vertexColors = this.vertexColors;
- material.skinning = this.skinning;
- material.morphTargets = this.morphTargets;
- material.morphNormals = this.morphNormals;
- return material;
- };
|