Explorar o código

Add missing semicolon in HDRCubeTextureLoader

Tristan Valcke %!s(int64=8) %!d(string=hai) anos
pai
achega
6f5d75c3c5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      examples/js/loaders/HDRCubeTextureLoader.js

+ 1 - 1
examples/js/loaders/HDRCubeTextureLoader.js

@@ -9,7 +9,7 @@ THREE.HDRCubeTextureLoader = function (manager) {
   this.hdrLoader = new THREE.RGBELoader();
 
   if( THREE.Encodings === undefined ) throw new Error( "HDRCubeMapLoader requires THREE.Encodings" );
-}
+};
 
 THREE.HDRCubeTextureLoader.prototype.load = function(type, urls, onLoad, onProgress, onError) {
   var texture = new THREE.CubeTexture();