For animation overriding, we have a more complicated way to do that. First, we built a animator controller system similar to Mecanim. In the animator controller, we have several layers, and each layer has several states, and each state can be a plain animation, a blend tree 1D, or a blend tree 2D. A layer can either be additive or override, and we also support weighted override and additive. For a simpler example, let's think about the following case:
Layer 0: Base Layer, plays animation 'idle'
Layer 1: Shooting Layer, Override (weight = 1), plays animation 'aim' (only has keyframes on upper body)
First, we introduce the mask concept. A mask keeps tracking the current weight of all bones in a skeleton. We update the layers like the following:
// In Animator.Update()
skeleton.SetToSetupPose();
mask.Reset(); // Reset weights of all bones to 0.
for( int i = this.layers.Count - 1; i >= 0; i
---
)
{
layer[i].Update();
}
// In Layer.Update()
currentState.Update();
currentState.UpdateMask();
mask.ApplyAffectedBoneWeights( layerWeight ); // Weights of all marked bones *= 1 - layerWeight, unmark those bones
// In State.Update()
foreach( timeline in timelines )
{
timeline.Apply( alpha );
}
// In RotateTimeline.Apply( alpha )
alpha *= mask.GetBoneWeight( boneIndex );
// In RotateTimeline.UpdateMask()
mask.MarkAffectedBone( boneIndex ); // Mark the bone for later 'ApplyAffectedBoneWeights'
So, the idea is to reversely update layers, and for each layer, update the mask so that later layers can apply the bone weight.
I don't know if it is enough for you to understand our practice, just tell me your thought. I kinda like the discussion right now