diff --git a/examples/js/BlendCharacter.js b/examples/js/BlendCharacter.js index 28d3b073e4ebbabd01c5dbe0369082f4598eb1ba..db564949d2b0b87dac911c7a7b4c760dfbc7c845 100644 --- a/examples/js/BlendCharacter.js +++ b/examples/js/BlendCharacter.js @@ -39,7 +39,6 @@ THREE.BlendCharacter = function () { scope.material.skinning = true; scope.mixer = new THREE.AnimationMixer( scope ); - scope.mixer = scope.mixer; // Create the animations for ( var i = 0; i < scope.geometry.animations.length; ++ i ) { @@ -129,7 +128,7 @@ THREE.BlendCharacter = function () { return this.mixer.clipAction( animName ).getEffectiveWeight(); - } + }; this.pauseAll = function() { @@ -154,7 +153,7 @@ THREE.BlendCharacter = function () { this.visible = boolean; - } + }; };