Sfoglia il codice sorgente

Add missing semicolon in webgl_shadowmap_pointlight

Tristan Valcke 8 anni fa
parent
commit
a04a24acd4
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      examples/webgl_shadowmap_pointlight.html

+ 1 - 1
examples/webgl_shadowmap_pointlight.html

@@ -95,7 +95,7 @@
 					shininess: 10,
 					shininess: 10,
 					specular: 0x111111,
 					specular: 0x111111,
 					side: THREE.BackSide
 					side: THREE.BackSide
-				} )
+				} );
 				var mesh = new THREE.Mesh( geometry, material );
 				var mesh = new THREE.Mesh( geometry, material );
 				mesh.position.y = 10;
 				mesh.position.y = 10;
 				mesh.receiveShadow = true;
 				mesh.receiveShadow = true;