Skip to content

Commit

Permalink
Merge pull request #14599 from looeee/fbxloader_check_for_layered_bum…
Browse files Browse the repository at this point in the history
…pmap

FBXLoader: check for layered bumpmap
  • Loading branch information
mrdoob committed Jul 31, 2018
2 parents 45528f5 + 79b1f64 commit f97687c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/js/loaders/FBXLoader.js
Expand Up @@ -555,7 +555,7 @@ THREE.FBXLoader = ( function () {
switch ( type ) {

case 'Bump':
parameters.bumpMap = textureMap.get( child.ID );
parameters.bumpMap = self.getTexture( textureMap, child.ID );
break;

case 'DiffuseColor':
Expand Down

0 comments on commit f97687c

Please sign in to comment.