123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /**
- * @author mr.doob / http://mrdoob.com/
- * @author alteredq / http://alteredqualia.com/
- *
- * parameters = {
- * color: <hex>,
- * opacity: <float>,
- * map: new THREE.Texture( <Image> ),
- *
- * lightMap: 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>,
- *
- * fog: <bool>
- * }
- */
- THREE.MeshBasicMaterial = function ( parameters ) {
- THREE.Material.call( this );
- this.color = new THREE.Color( 0xffffff ); // emissive
- this.map = null;
- this.lightMap = 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.setValues( parameters );
- };
- THREE.MeshBasicMaterial.prototype = Object.create( THREE.Material.prototype );
- THREE.MeshBasicMaterial.prototype.clone = function () {
- var material = new THREE.MeshBasicMaterial();
- material.color.copy( this.color );
- material.map = this.map;
- material.lightMap = this.lightMap;
-
- 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;
- return material;
- };
|