We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40c5084 + 5f9dcff commit 8f08e4eCopy full SHA for 8f08e4e
examples/js/loaders/FBXLoader.js
@@ -495,7 +495,7 @@ THREE.FBXLoader = ( function () {
495
496
parameters.color = new THREE.Color().fromArray( materialNode.Diffuse.value );
497
498
- } else if ( (materialNode.DiffuseColor && (materialNode.DiffuseColor.type === 'Color' || materialNode.DiffuseColor.type === 'ColorRGB') ) {
+ } else if ( materialNode.DiffuseColor && (materialNode.DiffuseColor.type === 'Color' || materialNode.DiffuseColor.type === 'ColorRGB') ) {
499
500
// The blender exporter exports diffuse here instead of in materialNode.Diffuse
501
parameters.color = new THREE.Color().fromArray( materialNode.DiffuseColor.value );
0 commit comments