Skip to content

Commit 303c899

Browse files
committed
FBXLoader: Fixed typo in condition. See #15788.
1 parent 749f4eb commit 303c899

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/js/loaders/FBXLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2510,7 +2510,7 @@ THREE.FBXLoader = ( function () {
25102510

25112511
sceneGraph.traverse( function ( child ) {
25122512

2513-
if ( child.ID = rawModel.id ) {
2513+
if ( child.ID === rawModel.id ) {
25142514

25152515
node.transform = child.matrix;
25162516

0 commit comments

Comments
 (0)