Hi,
I'm trying to get the angle like below.
![alt text][1]
But in 3D space not on the same level, I thought this would do it.
function angleToPlayer() : float
{
targetDir = player.position - transform.position;
forwardVector = transform.forward;
angle = Vector3.Angle(forwardVector, targetDir);
return angle;
}
But unless the enemy is looking down or up, directly at the player the angle is way to high, whats missing?
EDIT .. The below angle from the dragon to the green marker on the deck shows 36.62242
![alt text][2]
[1]: /storage/temp/41679-screen-shot-2015-03-02-at-202805.png
[2]: /storage/temp/41681-screen-shot-00.jpg
↧