Parcourir la source

Updated builds.

Mr.doob il y a 11 ans
Parent
commit
bffb56912f
2 fichiers modifiés avec 181 ajouts et 180 suppressions
  1. 5 10
      build/three.js
  2. 176 170
      build/three.min.js

+ 5 - 10
build/three.js

@@ -27487,24 +27487,19 @@ THREE.ImageUtils = {
 
                     request.open( 'GET', url, true );
                     request.responseType = "arraybuffer";
-                    request.onload = function() {
-                        if ( this.status === 200 ) {
+                    
+                    request.addEventListener( 'load', function ( event ) {
+
                             var imageData = THREE.ImageUtils.decodeTGA( this.response );
 
                             if ( imageData ) {
                                 texture.image = imageData;
                                 texture.sourceFile = url;
                                 texture.needsUpdate = true;
-                                
-                                return texture;
-                            }
 
-                        }
-                    };
-                    
-                    request.addEventListener( 'load', function ( event ) {
+                                if ( onLoad ) onLoad( texture );
 
-                            if ( onLoad ) onLoad( texture );
+                            }
 
 			}, false );
                         

Fichier diff supprimé car celui-ci est trop grand
+ 176 - 170
build/three.min.js


Certains fichiers n'ont pas été affichés car il y a eu trop de fichiers modifiés dans ce diff