Skip to content

Commit

Permalink
ColladaLoader: Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Mugen87 committed Mar 4, 2018
1 parent 4eb5068 commit faa51af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/js/loaders/ColladaLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -2107,7 +2107,7 @@ THREE.ColladaLoader.prototype = {

if ( primitives.length === 0 ) return {};

// our goal is to create one buffer geoemtry for a single type of primitives
// our goal is to create one buffer geometry for a single type of primitives
// first, we group all primitives by their type

var groupedPrimitives = groupPrimitives( primitives );
Expand Down Expand Up @@ -3309,7 +3309,7 @@ THREE.ColladaLoader.prototype = {
if ( object.name === '' ) {

object.name = ( type === 'JOINT' ) ? data.sid : data.name;

}

object.matrix.copy( matrix );
Expand Down

0 comments on commit faa51af

Please sign in to comment.