|
@@ -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;
|