I need to instantiate an animation, I have no problems instantiating other
objects, but the animation just doesnt appear in the game when I put a vector
in the instantiation.
//this makes the explosion animation appear, but not where I want it
Instantiate(explosion_prefab);
//this makes the instantiation, but the explosion animation doesnt appear at all
Instantiate(explosion_prefab,Vector3(0, 0,3), Quaternion.identity);
I want the instantiation to be over an object (no problems with that), the problem is just that the animation doesnt appear giving it a vector and rotation.
I appreciate any help in advance.