Browse Source

FBXLoader switch default type from Object3D to Group

Lewy Blue 7 years ago
parent
commit
6f5619d8af
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/js/loaders/FBXLoader.js

+ 1 - 1
examples/js/loaders/FBXLoader.js

@@ -1730,7 +1730,7 @@
 						break;
 
 					default:
-						model = new THREE.Object3D();
+						model = new THREE.Group();
 						break;
 
 				}