123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /**
- * @author mrdoob / http://mrdoob.com/
- * @author alteredq / http://alteredqualia.com/
- *
- * parameters = {
- * color: <hex>,
- * opacity: <float>,
- * map: new THREE.Texture( <Image> ),
- *
- * aoMap: new THREE.Texture( <Image> ),
- * aoMapIntensity: <float>
- *
- * specularMap: new THREE.Texture( <Image> ),
- *
- * alphaMap: 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>,
- * depthWrite: <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.type = 'MeshBasicMaterial';
- this.color = new THREE.Color( 0xffffff ); // emissive
- this.map = null;
- this.aoMap = null;
- this.aoMapIntensity = 1.0;
- this.specularMap = null;
- this.alphaMap = 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.constructor = THREE.MeshBasicMaterial;
- THREE.MeshBasicMaterial.prototype.clone = function () {
- var material = new THREE.MeshBasicMaterial();
- material.copy( this );
- material.color.copy( this.color );
- material.map = this.map;
- material.aoMap = this.aoMap;
- material.aoMapIntensity = this.aoMapIntensity;
- material.specularMap = this.specularMap;
- material.alphaMap = this.alphaMap;
- 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;
- };
|