Hi,
I'm having a problem with getting my game character to rotate towards its target. Whenever it detects its target it always rotates to the same angle instead of rotating to face the target no matter which direction it approaches it from.
I've added a little illustration to try help explain my problem.
![alt text][1]
[1]: /storage/temp/46212-problem.jpg
Here is my code that handles the rotation and movement. Sorry not the cleanest but at-least you can see the different options I've tried with the commented out code.
Any help will be appreciated.
Thanks
public GameObject target;
private Rigidbody rbody;
IEnumerator ChaceTarget ()
{
while (EventManager.Instance.targetInPlay)
{
if(target != null)
{
targetSpeed = rbody.velocity.magnitude;
targetPos = target.transform.position;
targetOffset = target.transform.position - transform.position;
targetDist = targetOffset.sqrMagnitude / 10f;
velocity = rbody.velocity;
predictedPos = (target.transform.position + (rbody.velocity * Time.deltaTime * 3f));
//relativePos = (predictedPos - transform.position);
//relativePos = (Vector3.Normalize(predictedPos - transform.position));
relativePos = (predictedPos - transform.position).normalized;
if(targetDist <= 3f && targetDist > 0.2f)
{
targetPos.y = 0;
rotation = Quaternion.LookRotation(targetPos);
//transform.rotation = Quaternion.RotateTowards(transform.rotation, rotation, Time.deltaTime * rotationSpeed);
transform.rotation = Quaternion.Slerp(transform.rotation, rotation, Time.deltaTime * rotationSpeed);
if(Mathf.Abs (transform.rotation.eulerAngles.y - rotation.eulerAngles.y) < 1)
{
transform.rotation = rotation;
}
//transform.Translate(Vector3.forward * Time.deltaTime * speed);
transform.position = Vector3.MoveTowards(transform.position, targetPos, Time.deltaTime * speed);
speed += acc;
speed = Mathf.Clamp(speed, 0f, maxSpeed);
}
else if(targetDist > 3f)// && targetSpeed > 15f)
{
predictedPos.y = 0;
rotation = Quaternion.LookRotation(predictedPos);
//transform.rotation = Quaternion.RotateTowards(transform.rotation, rotation, Time.deltaTime * rotationSpeed);
transform.rotation = Quaternion.Slerp(transform.rotation, rotation, Time.deltaTime * rotationSpeed);
if(Mathf.Abs (transform.rotation.eulerAngles.y - rotation.eulerAngles.y) < 1)
{
transform.rotation = rotation;
}
//transform.Translate(Vector3.forward * Time.deltaTime * speed);
transform.position = Vector3.MoveTowards(transform.position, predictedPos, Time.deltaTime * speed);
speed += acc;
speed = Mathf.Clamp(speed, 0f, maxSpeed);
}
else
{
targetPos.y = 0;
rotation = Quaternion.LookRotation(targetPos);
//transform.rotation = Quaternion.RotateTowards(transform.rotation, rotation, Time.deltaTime * rotationSpeed);
transform.rotation = Quaternion.Slerp(transform.rotation, rotation, Time.deltaTime * rotationSpeed);
if(Mathf.Abs (transform.rotation.eulerAngles.y - rotation.eulerAngles.y) < 1)
{
transform.rotation = rotation;
}
}
}
yield return null;
}
yield return new WaitForSeconds (2f);
ResetPosition ();
Edit
I've just spotted some silly errors that have been causing the problems regarding facing the target. I was supposed to use relativePos & targetOffset in the respective Quaternion.LookRotation() code instead of predictedPos & targetPos. Helps to have a break from the computer screen and look at the problem with fresh eyes sometimes:)
The only problem now is to stop the gameObject rotating to 0 when it reaches its target like in the illustration above!
↧