Browse Source

Add missing semicolon, and remove unnecessary comma in RaytracingRenderer

Tristan Valcke 8 years ago
parent
commit
3a0072b456
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/js/renderers/RaytracingRenderer.js

+ 2 - 2
examples/js/renderers/RaytracingRenderer.js

@@ -74,7 +74,7 @@ THREE.RaytracingRenderer = function ( parameters ) {
 
 				}
 
-			}
+			};
 
 			worker.color = new THREE.Color().setHSL( Math.random() , 0.8, 0.8 ).getHexString();
 			pool.push( worker );
@@ -195,7 +195,7 @@ THREE.RaytracingRenderer = function ( parameters ) {
 		mirror: 1,
 		reflectivity: 1,
 		refractionRatio: 1,
-		glass: 1,
+		glass: 1
 
 	};