Skip to content

Commit b944c59

Browse files
committed
Updated builds.
1 parent 49f25c6 commit b944c59

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build/three.webgpu.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2248,7 +2248,7 @@ class JoinNode extends TempNode {
22482248

22492249
if ( length >= maxLength ) {
22502250

2251-
console.error( 'THREE.TSL: Length of parameters exceeds maximum length of function type.' );
2251+
console.error( `THREE.TSL: Length of parameters exceeds maximum length of function '${ type }()' type.` );
22522252
break;
22532253

22542254
}
@@ -2259,7 +2259,7 @@ class JoinNode extends TempNode {
22592259

22602260
if ( length + inputTypeLength > maxLength ) {
22612261

2262-
console.error( 'THREE.TSL: Length of joined data exceeds maximum length of output type.' );
2262+
console.error( `THREE.TSL: Length of '${ type }()' data exceeds maximum length of output type.` );
22632263

22642264
inputTypeLength = maxLength - length;
22652265
inputType = builder.getTypeFromLength( inputTypeLength );

build/three.webgpu.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/three.webgpu.nodes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2248,7 +2248,7 @@ class JoinNode extends TempNode {
22482248

22492249
if ( length >= maxLength ) {
22502250

2251-
console.error( 'THREE.TSL: Length of parameters exceeds maximum length of function type.' );
2251+
console.error( `THREE.TSL: Length of parameters exceeds maximum length of function '${ type }()' type.` );
22522252
break;
22532253

22542254
}
@@ -2259,7 +2259,7 @@ class JoinNode extends TempNode {
22592259

22602260
if ( length + inputTypeLength > maxLength ) {
22612261

2262-
console.error( 'THREE.TSL: Length of joined data exceeds maximum length of output type.' );
2262+
console.error( `THREE.TSL: Length of '${ type }()' data exceeds maximum length of output type.` );
22632263

22642264
inputTypeLength = maxLength - length;
22652265
inputType = builder.getTypeFromLength( inputTypeLength );

build/three.webgpu.nodes.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)