@Veljko, after digging into your scene I am seeing why you are getting some strange combinations of the expression morph targets when quickly clicking one of your UI buttons. This has to do with the fact that you have enabled blending, have multiple clips playing on the morph target influences at the same time, and have additive blending applied to the morph target animations.
If you disable the animation blending and change nothing else about your scene, the problem goes away. What is happening, however is a little more complicated so you may need some guiderails if you want to use additive blending for additional face morphs for visemes or emotions.
All of your animations seem to have some keyframe data on many of your morph target influences, so by adding in the idle blendshapes or talking blendshapes animations, you are getting influences of both the bode animation (for example idle) and the face animation (for example blendshapes talking) adding together. When you click on one of the UI buttons, you are telling the current body animation to stop and a new body animation to start while blending between the two clips. While this change in the body animation is happening the face animation continues without stopping.
This means that the face animation is in a different point every time you click a UI button, the body animations blend, interpolating between the two motion clips and the current time of the face animation is added to any influence weights of the body animations. Quickly clicking the same animation is adding another blend to the stack. So if you click the button four times in quick succession, there could be more than two animations blending at once because you keep adding another blend to the stack. With each of these blends, you are also adding in the face morph animation. So you get an additional added face animation (wherever the face animation happens to be at the time) for each of the body animation clips trying to blend.
If you want to be able to add your face animations to the body animations and not run into this, you will need to make sure your blend speed on your clips is not slower than the rate in which you want your user to be able to click the UI button. A simple solve here would be to add a timeout on your button click to disable calling your blendAnimation
function faster than your clips can blend. Or you could disable the button during that timeout so that the user can see that the button can’t be clicked quickly.
I hope this makes sense as it’s just a confluence of features you are using that all need time to resolve before they try to go to the next state. If you have more questions, feel free to ping back.