Sorry for the double post, but the edit button isn't working (atleast not on my browser)
Is there a way to slow down the movement of the object to face another (using the code posted by Superku), so the user actually sees the movement instead of the object immediately changing direction?
I'm guessing it would be something like so:
var temp_pan = atan(my_vector.x/my_vector.y); // Copied from manual
var temp_tilt = asin(my_vector.z/length(my_vector)); // ^
var i;
for(i = 0; i < temp_pan; i++)
{
angle.pan += 1;
}
for(i = 0; i < temp_tilt; i++)
{
angle.tilt += 1;
}
Could anyone confirm this? I can't seem to get it working

.
Thanks!