|
@@ -10,7 +10,6 @@
|
|
* map: new THREE.Texture( <Image> ),
|
|
* map: new THREE.Texture( <Image> ),
|
|
*
|
|
*
|
|
* lightMap: new THREE.Texture( <Image> ),
|
|
* lightMap: new THREE.Texture( <Image> ),
|
|
- * aoMap: new THREE.Texture( <Image> ),
|
|
|
|
*
|
|
*
|
|
* specularMap: new THREE.Texture( <Image> ),
|
|
* specularMap: new THREE.Texture( <Image> ),
|
|
*
|
|
*
|
|
@@ -54,8 +53,6 @@ THREE.MeshLambertMaterial = function ( parameters ) {
|
|
this.map = null;
|
|
this.map = null;
|
|
|
|
|
|
this.lightMap = null;
|
|
this.lightMap = null;
|
|
- this.aoMap = null;
|
|
|
|
- this.aoScale = 1.0;
|
|
|
|
|
|
|
|
this.specularMap = null;
|
|
this.specularMap = null;
|
|
|
|
|
|
@@ -103,9 +100,6 @@ THREE.MeshLambertMaterial.prototype.clone = function () {
|
|
material.map = this.map;
|
|
material.map = this.map;
|
|
|
|
|
|
material.lightMap = this.lightMap;
|
|
material.lightMap = this.lightMap;
|
|
- material.aoMap = this.aoMap;
|
|
|
|
- material.aoScale = this.aoScale;
|
|
|
|
- material.aoScale = this.aoScale;
|
|
|
|
|
|
|
|
material.specularMap = this.specularMap;
|
|
material.specularMap = this.specularMap;
|
|
|
|
|