hey, is it posible to have two different transforms assigned as mixing transforms for one animation?
thanks in advance
hey, is it posible to have two different transforms assigned as mixing transforms for one animation?
thanks in advance
Yes, you can have multiple mixing transforms on a single animation state.
I am not sure what you mean by mixing transforms.
In any case, any Game Object can only have a single Transform component. In fact, it is mandatory that a Game Object have a transform, else it cannot exist in the world.
You can, however, have any array of child Game Objects parented to your original Game Object, each with their own Transforms, but I do not believe that is what you are asking.
If, by mixing transforms, you mean blending animations, you can do that here:
API Reference: Animation Class
With that, for example, you could have 2 animations, one where your Transform moves from 0,0,0 to 10,0,0, and another where it moves from 0,0,0 to 0,10,0, and if you play them both simultaneously using layers and blend weights, your Transform would move to 10,10,0.
Hope that helps.
==