2
0
Ben Houston 10 жил өмнө
parent
commit
4acb726c1a

+ 0 - 9
src/animation/AnimationAction.js

@@ -24,12 +24,8 @@ THREE.AnimationAction.prototype = {
 
 	updateTime: function( clipDeltaTime ) {
 
-		//console.log( 'AnimationAction[' + this.clip.name + '].toAnimationClipTime( ' + time + ' )' );
 		this.clipTime += clipDeltaTime;
 
-		//console.log( this.clip.name, '.getTimeScaleAt( ' + this.time + ' )', this.getTimeScaleAt( this.time ) );
-		//console.log( '   clipTime: ' + clipTime );
-
 		var duration = this.clip.duration;
 
 		if( this.loop ) {
@@ -37,7 +33,6 @@ THREE.AnimationAction.prototype = {
 			if( this.clipTime < 0 ) {
 
 				this.clipTime -= Math.floor( this.clipTime / duration ) * duration;
-				//console.log( '   clipTime: ' + clipTime );
 
 			}
 
@@ -63,14 +58,10 @@ THREE.AnimationAction.prototype = {
 
 	update: function( clipDeltaTime ) {
 
-		//console.log( 'AnimationAction[' + this.clip.name + '].getAt( ' + time + ' )' );
-
 		this.updateTime( clipDeltaTime );
 
 		var clipResults = this.clip.getAt( this.clipTime );
 
-		//console.log( "  clipResults: ", clipResults );
-
 		return clipResults;
 		
 	},