Browse Source

Updated builds.

Mr.doob 11 months ago
parent
commit
b944c59f54

+ 2 - 2
build/three.webgpu.js

@@ -2248,7 +2248,7 @@ class JoinNode extends TempNode {
 
 			if ( length >= maxLength ) {
 
-				console.error( 'THREE.TSL: Length of parameters exceeds maximum length of function type.' );
+				console.error( `THREE.TSL: Length of parameters exceeds maximum length of function '${ type }()' type.` );
 				break;
 
 			}
@@ -2259,7 +2259,7 @@ class JoinNode extends TempNode {
 
 			if ( length + inputTypeLength > maxLength ) {
 
-				console.error( 'THREE.TSL: Length of joined data exceeds maximum length of output type.' );
+				console.error( `THREE.TSL: Length of '${ type }()' data exceeds maximum length of output type.` );
 
 				inputTypeLength = maxLength - length;
 				inputType = builder.getTypeFromLength( inputTypeLength );

File diff suppressed because it is too large
+ 0 - 0
build/three.webgpu.min.js


+ 2 - 2
build/three.webgpu.nodes.js

@@ -2248,7 +2248,7 @@ class JoinNode extends TempNode {
 
 			if ( length >= maxLength ) {
 
-				console.error( 'THREE.TSL: Length of parameters exceeds maximum length of function type.' );
+				console.error( `THREE.TSL: Length of parameters exceeds maximum length of function '${ type }()' type.` );
 				break;
 
 			}
@@ -2259,7 +2259,7 @@ class JoinNode extends TempNode {
 
 			if ( length + inputTypeLength > maxLength ) {
 
-				console.error( 'THREE.TSL: Length of joined data exceeds maximum length of output type.' );
+				console.error( `THREE.TSL: Length of '${ type }()' data exceeds maximum length of output type.` );
 
 				inputTypeLength = maxLength - length;
 				inputType = builder.getTypeFromLength( inputTypeLength );

File diff suppressed because it is too large
+ 0 - 0
build/three.webgpu.nodes.min.js


Some files were not shown because too many files changed in this diff

粤ICP备19079148号