Skip to content

Commit

Permalink
remove some left over console.log statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhouston committed Sep 17, 2015
1 parent 33eb489 commit d24f3e0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion examples/webgl_animation_scene.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@
loader.load( "models/json/scene-animation.json", function ( loadedScene ) {

sceneAnimationClip = loadedScene.animations[0];
console.log('sceneAnimationClip', sceneAnimationClip);
scene = loadedScene;
scene.add( camera );
scene.fog = new THREE.Fog( 0xffffff, 2000, 10000 );
Expand Down
3 changes: 1 addition & 2 deletions src/loaders/ObjectLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,8 @@ THREE.ObjectLoader.prototype = {
var object = this.parseObject( json.object, geometries, materials );

if( json.animations ) {
console.log( json.animations );

object.animations = this.parseAnimations( json.animations );
console.log( object.animations );

}

Expand Down

0 comments on commit d24f3e0

Please sign in to comment.