x


Need to 'un-roll' my FPS

I'm using a FPS script for general navigation, but also have a 'tour' script which moves my player (and cam) around to some pre-defined views. In doing so, sometimes a 'roll' angle is introduced (for the nice view).

When the user moves the player (say, with mouselook or WASD), I want to remove any 'roll' that might have been introduced, leaving just pitch and yaw. Any ideas the best way to do this?

more ▼

asked Nov 15 '10 at 09:38 PM

DaveA gravatar image

DaveA
26.4k 151 171 256

(comments are locked)
10|3000 characters needed characters left

1 answer: sort voted first

You can apply a corrective rotation that aligns the object's up vector with the world up vector. This can be easily done in Unity using Quaternion.FromToRotation().

That said, an even easier solution would be to use a control scheme that doesn't introduce perceived roll in the first place. (I don't know what control scheme you're using currently, so I can't be much more specific than that.)

[Edit: Adding additional info following comments.]

Here is what I'd probably try:

  1. At the moment the user provides input while the camera is in 'tour' mode, grab the camera's orientation and store it.

  2. To 'correct' the camera's orientation, I think what you'll want to do is adjust it so that the camera's side vector lies in the XZ plane (assuming y is up). One way to do this would be to project the side vector onto the XZ plane, normalize the result, and then apply a corrective rotation (as I mentioned earlier) to rotate the current side vector onto the 'corrected' side vector. Note that cases where the projection has small magnitude (such as when the camera is on its side, more or less) will need to be handled separately.

  3. Once you have the corrected orientation, you can compute the yaw and pitch directly from the forward vector. At this point you can switch over to your standard yaw/pitch-based FPS-style control.

  4. Presumably you won't want this to happen instantaneously, as that would be a little jarring, but what you can do to smooth out the effect is interpolate between the last orientation for the 'tour' camera (which you saved in step 1) and the current orientation of the camera over some short interval.

I haven't actually tried the above myself, so it's somewhat speculative. But, it's probably what I'd try first.

more ▼

answered Nov 15 '10 at 11:31 PM

Jesse Anders gravatar image

Jesse Anders
7.3k 7 17 48

I think he is saying that the 'tour' scripts, from which the player sometimes resumes control, can introduce a roll rotation

Nov 15 '10 at 11:33 PM Novodantis 1

Correct. Basically I place a bunch of 'dummy' cameras which provide various useful and nice views of the scene. On command, I 'fly' the player using a type of SLERP to match one of those cameras. Sometimes there is a tilt involved because it just looks better. When they hit W or move mouse (for example), I need to upright the camera, not change pitch or yaw though, so it picks up pretty much where the 'tour view' left off, but without the tilt/roll that makes it look lame.

Nov 15 '10 at 11:57 PM DaveA

I edited my answer and added some additional info.

Nov 16 '10 at 04:43 AM Jesse Anders
(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x3324
x1172
x167
x59

asked: Nov 15 '10 at 09:38 PM

Seen: 1043 times

Last Updated: Nov 15 '10 at 09:38 PM