Skip to content

Commit

Permalink
Merge pull request #13516 from looeee/FBXLoader_fix_light_farAttenuation
Browse files Browse the repository at this point in the history
FBXLoader: fix FarAttenuationEnd parsing
  • Loading branch information
mrdoob authored Mar 7, 2018
2 parents 14e0532 + b7c6e64 commit 3777ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/js/loaders/FBXLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -1741,7 +1741,7 @@

} else {

distance = lightAttribute.FarAttenuationEnd.value / 1000;
distance = lightAttribute.FarAttenuationEnd.value;

}

Expand Down

0 comments on commit 3777ad9

Please sign in to comment.