123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /**
- *
- * Mixes together the AnimationClips scheduled by AnimationActions and applies them to the root and subtree
- *
- * TODO: MUST add support for blending between AnimationActions based on their weights, right now only the last AnimationAction is applied at full weight.
- *
- * @author Ben Houston / http://clara.io/
- * @author David Sarno / http://lighthaus.us/
- */
- THREE.AnimationMixer = function( root ) {
- this.root = root;
- this.actions = [];
- this.propertyBindings = {};
- };
- THREE.AnimationMixer.prototype = {
- constructor: THREE.AnimationMixer,
- addAction: function( action ) {
- console.log( this.root.name + ".AnimationMixer.addAnimationAction( " + action.name + " )" );
- this.actions.push( action );
- for( var track in action.tracks ) {
- if( ! this.propertyBindings[ track.name ] ) {
-
- this.propertyBindings[ track.name ] = new THREE.PropertyBinding( this.root, track.name );
-
- }
- }
- },
- removeAction: function( action ) {
- console.log( this.root.name + ".AnimationMixer.addRemove( " + action.name + " )" );
- var index = this.actions.indexOf( action );
- if ( index !== - 1 ) {
- this.actions.splice( index, 1 );
- }
- },
- update: function( time ) {
- console.log( this.root.name + ".AnimationMixer.update( " + time + " )" );
- var mixerResults = {};
- for( var i = 0; i < this.actions.length; i ++ ) {
- var action = this.actions[i];
- if( action.weight <= 0 || ! action.enabled ) continue;
- var actionResults = action.getAt( time );
- console.log( ' actionResults', actionResults );
- for( var name in actionResults ) {
- var mixerResult = mixerResults[name];
- var actionResult = actionResults[name];
- console.log( ' name', name );
- console.log( ' mixerResult', mixerResult );
- console.log( ' actionResult', actionResult );
-
- if( ! mixerResult ) {
- mixerResults[name] = {
- cumulativeValue: actionResult,
- cumulativeWeight: action.weight
- };
- }
- else {
- var lerpAlpha = action.weight / ( mixerResult.cumulativeWeight + action.weight );
- mixerResult.cumulativeValue = THREE.AnimationUtils.lerp( mixerResult.cumulativeValue, actionResult, lerpAlpha );
- mixerResult.cumulativeWeight += action.weight;
- }
- console.log( ' mixerResults[name]', mixerResults[name] );
- }
- }
- console.log( " mixerResults: ", mixerResults );
-
- // apply to nodes
- for ( var name in mixerResults ) {
- console.log( ' track:' + name );
- var mixerResult = mixerResults[ name ];
- console.log( ' mixerResult:', mixerResult );
- var propertyBinding = this.propertyBindings[ name ];
- propertyBinding.set( mixerResult.cumulativeValue );
-
- }
- }
- };
|