浏览代码

reset builds

Lewy Blue 8 年之前
父节点
当前提交
27b566ecbc
共有 2 个文件被更改,包括 7 次插入19 次删除
  1. 4 10
      build/three.js
  2. 3 9
      build/three.module.js

+ 4 - 10
build/three.js

@@ -29364,7 +29364,8 @@
 	 * Abstract Base class to load generic binary textures formats (rgbe, hdr, ...)
 	 */
 
-	function DataTextureLoader( manager ) {
+	var DataTextureLoader = BinaryTextureLoader;
+	function BinaryTextureLoader( manager ) {
 
 		this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager;
 
@@ -29373,7 +29374,7 @@
 
 	}
 
-	Object.assign( DataTextureLoader.prototype, {
+	Object.assign( BinaryTextureLoader.prototype, {
 
 		load: function ( url, onLoad, onProgress, onError ) {
 
@@ -41836,13 +41837,6 @@
 
 	}
 
-	function BinaryTextureLoader( manager ) {
-
-		console.warn( 'THREE.BinaryTextureLoader has been renamed to THREE.DataTextureLoader.' );
-		return new DataTextureLoader( manager );
-
-	}
-
 	//
 
 	Object.assign( Box2.prototype, {
@@ -42965,6 +42959,7 @@
 	exports.DepthTexture = DepthTexture;
 	exports.Texture = Texture;
 	exports.CompressedTextureLoader = CompressedTextureLoader;
+	exports.BinaryTextureLoader = BinaryTextureLoader;
 	exports.DataTextureLoader = DataTextureLoader;
 	exports.CubeTextureLoader = CubeTextureLoader;
 	exports.TextureLoader = TextureLoader;
@@ -43308,7 +43303,6 @@
 	exports.EdgesHelper = EdgesHelper;
 	exports.WireframeHelper = WireframeHelper;
 	exports.XHRLoader = XHRLoader;
-	exports.BinaryTextureLoader = BinaryTextureLoader;
 	exports.GeometryUtils = GeometryUtils;
 	exports.ImageUtils = ImageUtils;
 	exports.Projector = Projector;

文件差异内容过多而无法显示
+ 3 - 9
build/three.module.js


部分文件因为文件数量过多而无法显示