Skip to content

Commit

Permalink
Merge pull request #16272 from Mugen87/dev28
Browse files Browse the repository at this point in the history
GLTFExporter: Fix handling of cacheKey.
  • Loading branch information
Mugen87 authored Apr 17, 2019
2 parents 47853ab + 5f73eba commit 15a31bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/js/exporters/GLTFExporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -1359,7 +1359,7 @@ THREE.GLTFExporter.prototype = {

if ( cachedData.attributes.has( cacheKey ) ) {

primitive.indices = cachedData.attributes.get( geometry.index );
primitive.indices = cachedData.attributes.get( cacheKey );

} else {

Expand Down

0 comments on commit 15a31bc

Please sign in to comment.