Browse Source

Animation: Removed transitional code.

Revert this one for porting dependent code.
tschw 9 years ago
parent
commit
283016a295
1 changed files with 0 additions and 60 deletions
  1. 0 60
      src/animation/AnimationMixer.js

+ 0 - 60
src/animation/AnimationMixer.js

@@ -300,66 +300,6 @@ THREE.AnimationMixer.prototype = {
 
 
 		}
 		}
 
 
-	},
-
-	// DEPRECATED
-
-	findActionByName: function( name ) {
-
-		console.assert( false, "DEPRECATED: AnimationMixer.findActionByName" );
-
-		return this.clipAction( name );
-
-	},
-
-	play: function( action ) {
-
-		console.assert( false, "DEPRECATED: AnimationMixer.play" );
-
-		action.play();
-
-		return this;
-
-	},
-
-	fadeOut: function( action, duration ) {
-
-		console.assert( false, "DEPRECATED: AnimationMixer.fadeOut" );
-
-		action.fadeOut( duration );
-
-		return this;
-
-	},
-
-	fadeIn: function( action, duration ) {
-
-		console.assert( false, "DEPRECATED: AnimationMixer.fadeIn" );
-
-		action.fadeIn( duration );
-
-		return this;
-
-	},
-
-	warp: function( action, startTimeScale, endTimeScale, duration ) {
-
-		console.assert( false, "DEPRECATED: AnimationMixer.warp" );
-
-		action.warp( startTimeScale, endTimeScale, duration );
-
-		return this;
-
-	},
-
-	crossFade: function( fadeOutAction, fadeInAction, duration, warp ) {
-
-		console.assert( false, "DEPRECATED: AnimationMixer.crossFade" );
-
-		fadeOutAction.crossFadeTo( fadeInAction, duration, warp );
-
-		return this;
-
 	}
 	}
 
 
 };
 };