How can I rotate the Projectile Movement based object?

Hello,

how to rotate the Projectile Movement based object?

It seems to me that it is possible to transform projectile target only in moment of spawning, but if you want to spawn projectile and launch it later, and rotate it later, then it doesnt works!

I mean, how to affect where will fly the projectil after launch. I know there is Velocity on the projectile, but i thought that it is possible the projectile simply “rotate” to target, and keep for example the velocity still x = 1.0. that means “fly after your nose”

Thanks,

L.

Ok i gave up on this idea.

I will set the projectile velocity, which seems to be able to be modified on the fly…

For those who are unsure, how to set the projectile velocity to hit the target, i am using this:

Projectile → get World Location
Target → get World Location

then vector - vector (these two vectors)

and then Projectile → Set Velocity in Local space = result of previous operation

L.

Hi , thanks for the advice. I read somewhere that you should only change the X value of the projectile movement (if I remember correctly). I’ve a similar issue with that. In my game two rockets are spawned (assembled on a ship). But I also can’t transform the movement after spawning. Is the solution mentioned by you the common approach to handle this or are there other ways? Regards, NuKeR