In our software we have a camera based on mouse movement, and a quarternion at its heart.

We want to fire projectiles from this position, which we can do, however we want to use the camera to aim. The projectile takes a vector which it will add to its position each game frame.

How do we acquire such a vector from a given camera/quaternion?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

The quaternion doesn't represent a direction, it represents a rotation. You can define a vector that points in the direction that your camera is pointing initially (e.g. (0,0,1)) and transform it using the rotation represented by the quaternion.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.