- Home /
multiple Mixing Transforms
hey, is it posible to have two different transforms assigned as mixing transforms for one animation?
thanks in advance
Answer by equalsequals · Apr 27, 2011 at 06:33 PM
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.
==
Answer by Paulius-Liekis · Apr 27, 2011 at 08:15 PM
Yes, you can have multiple mixing transforms on a single animation state.
Your answer
Follow this Question
Related Questions
problem with addmixing transform 1 Answer
Add Mixing Transform Doesn't Work!! 4 Answers
Animation won't play when changing position 0 Answers
Vertex transformation - MissingFieldException error 2 Answers
Transform Rigidbody Animation 0 Answers