Look At counterpart?

Is there a “look away from” function?

Do a LookAt and rotate 180°.

–Eric

looker.LookAt( target )

is ( nearly ) the same as

looker.rotation = Quaternion.LookRotation( target.position - looker.position );

So you could do the following:

looker.rotation = Quaternion.LookRotation( looker.position - target.position );

To have the looker face away from the target.

Thanks for the tips. the problem was an orientation arrow on my screen that was pointed in the opposite direction. Just flipped it around and reset xForm, and all was well.