Преглед на файлове

Merge pull request #18753 from WestLangley/dev_car

Examples: clean up
Mr.doob преди 5 години
родител
ревизия
7ea3b62bef
променени са 1 файла, в които са добавени 5 реда и са изтрити 5 реда
  1. 5 5
      examples/webgl_materials_car.html

+ 5 - 5
examples/webgl_materials_car.html

@@ -192,21 +192,21 @@
 						} ),
 						new THREE.MeshStandardMaterial( {
 							color: 0xffffff, metalness: 1.0, roughness: 0.2, name: 'metallic'
-						} ),
+						} )
 
 					],
 
 					glass: [
 
 						new THREE.MeshPhysicalMaterial( {
-							color: 0xffffff, metalness: 1, roughness: 0, transparency: 1.0, transparent: true, name: 'clear'
+							color: 0xffffff, metalness: 0, roughness: 0, transparency: 1.0, transparent: true, name: 'clear'
 						} ),
 						new THREE.MeshPhysicalMaterial( {
-							color: 0x000000, metalness: 1, roughness: 0, transparency: 0.7, transparent: true, name: 'smoked'
+							color: 0x000000, metalness: 0, roughness: 0, transparency: 0.7, transparent: true, name: 'smoked'
 						} ),
 						new THREE.MeshPhysicalMaterial( {
-							color: 0x001133, metalness: 1, roughness: 0, transparency: 0.7, transparent: true, name: 'blue'
-						} ),
+							color: 0x001133, metalness: 0, roughness: 0, transparency: 0.7, transparent: true, name: 'blue'
+						} )
 
 					],