x


Applying a clamp to Quaternion.LookRotation

I'm currently using the following snippet of c# to cause a game object to turn to face the player:

void Update()
{
     Vector3 offsetPosFromPlayer = thePlayer.transform.position - transform.position;
     Quaternion rotToPlayer = Quaternion.LookRotation( offsetPosFromPlayer );
     transform.rotation = Quaternion.Slerp( transform.rotation, rotToPlayer, (Time.deltaTime * yawRotationSpeed) );
}

So far, it's working great. However, I'd like to clamp the rotation so that the object can only turn to a variable degree on either side. Say, for example, 180 degrees, so that if the player is behind the object it cannot turn to look at him.

I'm not sure where to insert the clamp, however, given that the above code deals with quaternions. Any suggestions? Am I going about this the wrong way?

more ▼

asked Apr 08 '12 at 12:19 AM

Shishka gravatar image

Shishka
2 1 2 3

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

1 answer: sort voted first

You might try using Quaternion.RotateTowards() if you're trying to get smooth rotation over time.

Barring that, I suppose you might be able to fake a clamp by using Quaternion.Angle() to check the angle beteen current/goal quats, and then some clever parameters to Quaternion.Slerp() to keep within "safe" limits.

more ▼

answered Apr 08 '12 at 12:32 AM

rutter gravatar image

rutter
5.2k 2 11

Thanks for the tip on RotateTowards!

So, here's what I've got now:

Vector3 offsetPosFromPlayer = thePlayer.transform.position - transform.position;

Quaternion rotToPlayer = Quaternion.LookRotation( offsetPosFromPlayer );

float amountToRotate = Quaternion.Angle( transform.rotation, rotToPlayer );

if ( trackingPlayer && amountToRotate <= yawClamp ) { transform.rotation = Quaternion.RotateTowards( transform.rotation, rotToPlayer, (Time.time * yawRotationSpeed) ); }

if ( trackingPlayer && amountToRotate >= yawClamp ) trackingPlayer = false;

This effectively accomplishes what I was out to do. Thanks for the tips! I think if there's anything I'd do different, it'd be to base the clamp value on the initial rotation of the object. However, this works great for my purposes. Thanks again!

Apr 08 '12 at 05:11 PM Shishka
(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:

x2173
x442
x81
x39

asked: Apr 08 '12 at 12:19 AM

Seen: 1111 times

Last Updated: Apr 08 '12 at 05:12 PM