Mr.doob 1 год назад
Родитель
Сommit
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 );

Разница между файлами не показана из-за своего большого размера
+ 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 );

Разница между файлами не показана из-за своего большого размера
+ 0 - 0
build/three.webgpu.nodes.min.js


Некоторые файлы не были показаны из-за большого количества измененных файлов

粤ICP备19079148号