Mr.doob пре 2 година
родитељ
комит
1f61ed2719
4 измењених фајлова са 63 додато и 274 уклоњено
  1. 21 93
      build/three.cjs
  2. 21 93
      build/three.js
  3. 0 0
      build/three.min.js
  4. 21 88
      build/three.module.js

+ 21 - 93
build/three.cjs

@@ -91,7 +91,6 @@ const UnsignedShort4444Type = 1017;
 const UnsignedShort5551Type = 1018;
 const UnsignedInt248Type = 1020;
 const AlphaFormat = 1021;
-const RGBFormat = 1022; // @deprecated since r137
 const RGBAFormat = 1023;
 const LuminanceFormat = 1024;
 const LuminanceAlphaFormat = 1025;
@@ -574,28 +573,28 @@ var MathUtils = /*#__PURE__*/Object.freeze({
 	__proto__: null,
 	DEG2RAD: DEG2RAD,
 	RAD2DEG: RAD2DEG,
-	generateUUID: generateUUID,
+	ceilPowerOfTwo: ceilPowerOfTwo,
 	clamp: clamp,
+	damp: damp,
+	degToRad: degToRad,
+	denormalize: denormalize,
 	euclideanModulo: euclideanModulo,
-	mapLinear: mapLinear,
+	floorPowerOfTwo: floorPowerOfTwo,
+	generateUUID: generateUUID,
 	inverseLerp: inverseLerp,
+	isPowerOfTwo: isPowerOfTwo,
 	lerp: lerp,
-	damp: damp,
+	mapLinear: mapLinear,
+	normalize: normalize,
 	pingpong: pingpong,
-	smoothstep: smoothstep,
-	smootherstep: smootherstep,
-	randInt: randInt,
+	radToDeg: radToDeg,
 	randFloat: randFloat,
 	randFloatSpread: randFloatSpread,
+	randInt: randInt,
 	seededRandom: seededRandom,
-	degToRad: degToRad,
-	radToDeg: radToDeg,
-	isPowerOfTwo: isPowerOfTwo,
-	ceilPowerOfTwo: ceilPowerOfTwo,
-	floorPowerOfTwo: floorPowerOfTwo,
 	setQuaternionFromProperEuler: setQuaternionFromProperEuler,
-	normalize: normalize,
-	denormalize: denormalize
+	smootherstep: smootherstep,
+	smoothstep: smoothstep
 });
 
 class Vector2 {
@@ -7397,14 +7396,6 @@ class Euler {
 
 	}
 
-	// @deprecated since r138, 02cf0df1cb4575d5842fef9c85bb5a89fe020d53
-
-	toVector3() {
-
-		console.error( 'THREE.Euler: .toVector3() has been removed. Use Vector3.setFromEuler() instead' );
-
-	}
-
 }
 
 Euler.DEFAULT_ORDER = 'XYZ';
@@ -14833,8 +14824,7 @@ function WebGLCapabilities( gl, extensions, parameters ) {
 
 	}
 
-	const isWebGL2 = ( typeof WebGL2RenderingContext !== 'undefined' && gl instanceof WebGL2RenderingContext ) ||
-		( typeof WebGL2ComputeRenderingContext !== 'undefined' && gl instanceof WebGL2ComputeRenderingContext );
+	const isWebGL2 = typeof WebGL2RenderingContext !== 'undefined' && gl instanceof WebGL2RenderingContext;
 
 	let precision = parameters.precision !== undefined ? parameters.precision : 'highp';
 	const maxPrecision = getMaxPrecision( precision );
@@ -15530,7 +15520,7 @@ class PMREMGenerator {
 
 		const cubeUVRenderTarget = _createRenderTarget( width, height, params );
 
-		if ( this._pingPongRenderTarget === null || this._pingPongRenderTarget.width !== width ) {
+		if ( this._pingPongRenderTarget === null || this._pingPongRenderTarget.width !== width || this._pingPongRenderTarget.height !== height ) {
 
 			if ( this._pingPongRenderTarget !== null ) {
 
@@ -24514,15 +24504,6 @@ function WebGLUtils( gl, extensions, capabilities ) {
 		if ( p === DepthFormat ) return gl.DEPTH_COMPONENT;
 		if ( p === DepthStencilFormat ) return gl.DEPTH_STENCIL;
 
-		// @deprecated since r137
-
-		if ( p === RGBFormat ) {
-
-			console.warn( 'THREE.WebGLRenderer: THREE.RGBFormat has been removed. Use THREE.RGBAFormat instead. https://github.com/mrdoob/three.js/pull/23228' );
-			return gl.RGBA;
-
-		}
-
 		// WebGL 1 sRGB fallback
 
 		if ( p === _SRGBAFormat ) {
@@ -38555,12 +38536,12 @@ var AnimationUtils = /*#__PURE__*/Object.freeze({
 	__proto__: null,
 	arraySlice: arraySlice,
 	convertArray: convertArray,
-	isTypedArray: isTypedArray,
+	flattenJSON: flattenJSON,
 	getKeyframeOrder: getKeyframeOrder,
+	isTypedArray: isTypedArray,
+	makeClipAdditive: makeClipAdditive,
 	sortedArray: sortedArray,
-	flattenJSON: flattenJSON,
-	subclip: subclip,
-	makeClipAdditive: makeClipAdditive
+	subclip: subclip
 });
 
 /**
@@ -49927,58 +49908,10 @@ function fromHalfFloat( val ) {
 
 var DataUtils = /*#__PURE__*/Object.freeze({
 	__proto__: null,
-	toHalfFloat: toHalfFloat,
-	fromHalfFloat: fromHalfFloat
+	fromHalfFloat: fromHalfFloat,
+	toHalfFloat: toHalfFloat
 });
 
-// r134, d65e0af06644fe5a84a6fc0e372f4318f95a04c0
-
-function ImmediateRenderObject() {
-
-	console.error( 'THREE.ImmediateRenderObject has been removed.' );
-
-}
-
-// r138, 48b05d3500acc084df50be9b4c90781ad9b8cb17
-
-class WebGLMultisampleRenderTarget extends WebGLRenderTarget {
-
-	constructor( width, height, options ) {
-
-		console.error( 'THREE.WebGLMultisampleRenderTarget has been removed. Use a normal render target and set the "samples" property to greater 0 to enable multisampling.' );
-		super( width, height, options );
-		this.samples = 4;
-
-	}
-
-}
-
-// r138, f9cd9cab03b7b64244e304900a3a2eeaa3a588ce
-
-class DataTexture2DArray extends DataArrayTexture {
-
-	constructor( data, width, height, depth ) {
-
-		console.warn( 'THREE.DataTexture2DArray has been renamed to DataArrayTexture.' );
-		super( data, width, height, depth );
-
-	}
-
-}
-
-// r138, f9cd9cab03b7b64244e304900a3a2eeaa3a588ce
-
-class DataTexture3D extends Data3DTexture {
-
-	constructor( data, width, height, depth ) {
-
-		console.warn( 'THREE.DataTexture3D has been renamed to Data3DTexture.' );
-		super( data, width, height, depth );
-
-	}
-
-}
-
 // r144
 
 class BoxBufferGeometry extends BoxGeometry {
@@ -50331,8 +50264,6 @@ exports.Cylindrical = Cylindrical;
 exports.Data3DTexture = Data3DTexture;
 exports.DataArrayTexture = DataArrayTexture;
 exports.DataTexture = DataTexture;
-exports.DataTexture2DArray = DataTexture2DArray;
-exports.DataTexture3D = DataTexture3D;
 exports.DataTextureLoader = DataTextureLoader;
 exports.DataUtils = DataUtils;
 exports.DecrementStencilOp = DecrementStencilOp;
@@ -50390,7 +50321,6 @@ exports.IcosahedronGeometry = IcosahedronGeometry;
 exports.ImageBitmapLoader = ImageBitmapLoader;
 exports.ImageLoader = ImageLoader;
 exports.ImageUtils = ImageUtils;
-exports.ImmediateRenderObject = ImmediateRenderObject;
 exports.IncrementStencilOp = IncrementStencilOp;
 exports.IncrementWrapStencilOp = IncrementWrapStencilOp;
 exports.InstancedBufferAttribute = InstancedBufferAttribute;
@@ -50545,7 +50475,6 @@ exports.RGBA_PVRTC_4BPPV1_Format = RGBA_PVRTC_4BPPV1_Format;
 exports.RGBA_S3TC_DXT1_Format = RGBA_S3TC_DXT1_Format;
 exports.RGBA_S3TC_DXT3_Format = RGBA_S3TC_DXT3_Format;
 exports.RGBA_S3TC_DXT5_Format = RGBA_S3TC_DXT5_Format;
-exports.RGBFormat = RGBFormat;
 exports.RGB_ETC1_Format = RGB_ETC1_Format;
 exports.RGB_ETC2_Format = RGB_ETC2_Format;
 exports.RGB_PVRTC_2BPPV1_Format = RGB_PVRTC_2BPPV1_Format;
@@ -50649,7 +50578,6 @@ exports.WebGL3DRenderTarget = WebGL3DRenderTarget;
 exports.WebGLArrayRenderTarget = WebGLArrayRenderTarget;
 exports.WebGLCubeRenderTarget = WebGLCubeRenderTarget;
 exports.WebGLMultipleRenderTargets = WebGLMultipleRenderTargets;
-exports.WebGLMultisampleRenderTarget = WebGLMultisampleRenderTarget;
 exports.WebGLRenderTarget = WebGLRenderTarget;
 exports.WebGLRenderer = WebGLRenderer;
 exports.WebGLUtils = WebGLUtils;

+ 21 - 93
build/three.js

@@ -95,7 +95,6 @@
 	const UnsignedShort5551Type = 1018;
 	const UnsignedInt248Type = 1020;
 	const AlphaFormat = 1021;
-	const RGBFormat = 1022; // @deprecated since r137
 	const RGBAFormat = 1023;
 	const LuminanceFormat = 1024;
 	const LuminanceAlphaFormat = 1025;
@@ -578,28 +577,28 @@
 		__proto__: null,
 		DEG2RAD: DEG2RAD,
 		RAD2DEG: RAD2DEG,
-		generateUUID: generateUUID,
+		ceilPowerOfTwo: ceilPowerOfTwo,
 		clamp: clamp,
+		damp: damp,
+		degToRad: degToRad,
+		denormalize: denormalize,
 		euclideanModulo: euclideanModulo,
-		mapLinear: mapLinear,
+		floorPowerOfTwo: floorPowerOfTwo,
+		generateUUID: generateUUID,
 		inverseLerp: inverseLerp,
+		isPowerOfTwo: isPowerOfTwo,
 		lerp: lerp,
-		damp: damp,
+		mapLinear: mapLinear,
+		normalize: normalize,
 		pingpong: pingpong,
-		smoothstep: smoothstep,
-		smootherstep: smootherstep,
-		randInt: randInt,
+		radToDeg: radToDeg,
 		randFloat: randFloat,
 		randFloatSpread: randFloatSpread,
+		randInt: randInt,
 		seededRandom: seededRandom,
-		degToRad: degToRad,
-		radToDeg: radToDeg,
-		isPowerOfTwo: isPowerOfTwo,
-		ceilPowerOfTwo: ceilPowerOfTwo,
-		floorPowerOfTwo: floorPowerOfTwo,
 		setQuaternionFromProperEuler: setQuaternionFromProperEuler,
-		normalize: normalize,
-		denormalize: denormalize
+		smootherstep: smootherstep,
+		smoothstep: smoothstep
 	});
 
 	class Vector2 {
@@ -7401,14 +7400,6 @@
 
 		}
 
-		// @deprecated since r138, 02cf0df1cb4575d5842fef9c85bb5a89fe020d53
-
-		toVector3() {
-
-			console.error( 'THREE.Euler: .toVector3() has been removed. Use Vector3.setFromEuler() instead' );
-
-		}
-
 	}
 
 	Euler.DEFAULT_ORDER = 'XYZ';
@@ -14837,8 +14828,7 @@
 
 		}
 
-		const isWebGL2 = ( typeof WebGL2RenderingContext !== 'undefined' && gl instanceof WebGL2RenderingContext ) ||
-			( typeof WebGL2ComputeRenderingContext !== 'undefined' && gl instanceof WebGL2ComputeRenderingContext );
+		const isWebGL2 = typeof WebGL2RenderingContext !== 'undefined' && gl instanceof WebGL2RenderingContext;
 
 		let precision = parameters.precision !== undefined ? parameters.precision : 'highp';
 		const maxPrecision = getMaxPrecision( precision );
@@ -15534,7 +15524,7 @@
 
 			const cubeUVRenderTarget = _createRenderTarget( width, height, params );
 
-			if ( this._pingPongRenderTarget === null || this._pingPongRenderTarget.width !== width ) {
+			if ( this._pingPongRenderTarget === null || this._pingPongRenderTarget.width !== width || this._pingPongRenderTarget.height !== height ) {
 
 				if ( this._pingPongRenderTarget !== null ) {
 
@@ -24518,15 +24508,6 @@
 			if ( p === DepthFormat ) return gl.DEPTH_COMPONENT;
 			if ( p === DepthStencilFormat ) return gl.DEPTH_STENCIL;
 
-			// @deprecated since r137
-
-			if ( p === RGBFormat ) {
-
-				console.warn( 'THREE.WebGLRenderer: THREE.RGBFormat has been removed. Use THREE.RGBAFormat instead. https://github.com/mrdoob/three.js/pull/23228' );
-				return gl.RGBA;
-
-			}
-
 			// WebGL 1 sRGB fallback
 
 			if ( p === _SRGBAFormat ) {
@@ -38559,12 +38540,12 @@
 		__proto__: null,
 		arraySlice: arraySlice,
 		convertArray: convertArray,
-		isTypedArray: isTypedArray,
+		flattenJSON: flattenJSON,
 		getKeyframeOrder: getKeyframeOrder,
+		isTypedArray: isTypedArray,
+		makeClipAdditive: makeClipAdditive,
 		sortedArray: sortedArray,
-		flattenJSON: flattenJSON,
-		subclip: subclip,
-		makeClipAdditive: makeClipAdditive
+		subclip: subclip
 	});
 
 	/**
@@ -49931,58 +49912,10 @@
 
 	var DataUtils = /*#__PURE__*/Object.freeze({
 		__proto__: null,
-		toHalfFloat: toHalfFloat,
-		fromHalfFloat: fromHalfFloat
+		fromHalfFloat: fromHalfFloat,
+		toHalfFloat: toHalfFloat
 	});
 
-	// r134, d65e0af06644fe5a84a6fc0e372f4318f95a04c0
-
-	function ImmediateRenderObject() {
-
-		console.error( 'THREE.ImmediateRenderObject has been removed.' );
-
-	}
-
-	// r138, 48b05d3500acc084df50be9b4c90781ad9b8cb17
-
-	class WebGLMultisampleRenderTarget extends WebGLRenderTarget {
-
-		constructor( width, height, options ) {
-
-			console.error( 'THREE.WebGLMultisampleRenderTarget has been removed. Use a normal render target and set the "samples" property to greater 0 to enable multisampling.' );
-			super( width, height, options );
-			this.samples = 4;
-
-		}
-
-	}
-
-	// r138, f9cd9cab03b7b64244e304900a3a2eeaa3a588ce
-
-	class DataTexture2DArray extends DataArrayTexture {
-
-		constructor( data, width, height, depth ) {
-
-			console.warn( 'THREE.DataTexture2DArray has been renamed to DataArrayTexture.' );
-			super( data, width, height, depth );
-
-		}
-
-	}
-
-	// r138, f9cd9cab03b7b64244e304900a3a2eeaa3a588ce
-
-	class DataTexture3D extends Data3DTexture {
-
-		constructor( data, width, height, depth ) {
-
-			console.warn( 'THREE.DataTexture3D has been renamed to Data3DTexture.' );
-			super( data, width, height, depth );
-
-		}
-
-	}
-
 	// r144
 
 	class BoxBufferGeometry extends BoxGeometry {
@@ -50335,8 +50268,6 @@
 	exports.Data3DTexture = Data3DTexture;
 	exports.DataArrayTexture = DataArrayTexture;
 	exports.DataTexture = DataTexture;
-	exports.DataTexture2DArray = DataTexture2DArray;
-	exports.DataTexture3D = DataTexture3D;
 	exports.DataTextureLoader = DataTextureLoader;
 	exports.DataUtils = DataUtils;
 	exports.DecrementStencilOp = DecrementStencilOp;
@@ -50394,7 +50325,6 @@
 	exports.ImageBitmapLoader = ImageBitmapLoader;
 	exports.ImageLoader = ImageLoader;
 	exports.ImageUtils = ImageUtils;
-	exports.ImmediateRenderObject = ImmediateRenderObject;
 	exports.IncrementStencilOp = IncrementStencilOp;
 	exports.IncrementWrapStencilOp = IncrementWrapStencilOp;
 	exports.InstancedBufferAttribute = InstancedBufferAttribute;
@@ -50549,7 +50479,6 @@
 	exports.RGBA_S3TC_DXT1_Format = RGBA_S3TC_DXT1_Format;
 	exports.RGBA_S3TC_DXT3_Format = RGBA_S3TC_DXT3_Format;
 	exports.RGBA_S3TC_DXT5_Format = RGBA_S3TC_DXT5_Format;
-	exports.RGBFormat = RGBFormat;
 	exports.RGB_ETC1_Format = RGB_ETC1_Format;
 	exports.RGB_ETC2_Format = RGB_ETC2_Format;
 	exports.RGB_PVRTC_2BPPV1_Format = RGB_PVRTC_2BPPV1_Format;
@@ -50653,7 +50582,6 @@
 	exports.WebGLArrayRenderTarget = WebGLArrayRenderTarget;
 	exports.WebGLCubeRenderTarget = WebGLCubeRenderTarget;
 	exports.WebGLMultipleRenderTargets = WebGLMultipleRenderTargets;
-	exports.WebGLMultisampleRenderTarget = WebGLMultisampleRenderTarget;
 	exports.WebGLRenderTarget = WebGLRenderTarget;
 	exports.WebGLRenderer = WebGLRenderer;
 	exports.WebGLUtils = WebGLUtils;

Разлика између датотеке није приказан због своје велике величине
+ 0 - 0
build/three.min.js


Разлика између датотеке није приказан због своје велике величине
+ 21 - 88
build/three.module.js


Неке датотеке нису приказане због велике количине промена