浏览代码

Loaders clean up.

Mr.doob 13 年之前
父节点
当前提交
b00aa9b692
共有 2 个文件被更改,包括 1 次插入2 次删除
  1. 0 1
      src/loaders/BinaryLoader.js
  2. 1 1
      src/loaders/Loader.js

+ 0 - 1
src/loaders/BinaryLoader.js

@@ -10,7 +10,6 @@ THREE.BinaryLoader = function ( showStatus ) {
 
 THREE.BinaryLoader.prototype = new THREE.Loader();
 THREE.BinaryLoader.prototype.constructor = THREE.BinaryLoader;
-THREE.BinaryLoader.prototype.supr = THREE.Loader.prototype;
 
 
 // Load models generated by slim OBJ converter with BINARY option (converter_obj_three_slim.py -t binary)

+ 1 - 1
src/loaders/Loader.js

@@ -8,7 +8,7 @@ THREE.Loader = function ( showStatus ) {
 	this.statusDomElement = showStatus ? THREE.Loader.prototype.addStatusElement() : null;
 
 	this.onLoadStart = function () {};
-	this.onLoadProgress = function() {};
+	this.onLoadProgress = function () {};
 	this.onLoadComplete = function () {};
 
 };