Billboarding + aligning with velocity direction
- by roxlu
I'm working on a particle system where I'm orientating the billboard using the inverted orientation matrix of my camera. This works quite well and my quad are rotated correctly towards the camera.
But, now I want to to rotate the quads in such a way that they point towards the direction they are going to.
In 2D this can be done by normalizing the velocity vector and using that vector for a rotation around the Z-axis (where vel.x = cos(a) and vel.y = sin(a)). But how does this work in 3D?
Thanks
roxlu