Take a look at this (http://answers.unity3d.com/questions/566152/lookat-locked-at-y-axis-but-in-local-space.html)
In summary for those of us that want to rotate for example a turret around its local y axis when said turret can be mounted at an angle in world space the above solution does the trick.
What its doing is similar but projects the point on a plane local to the turret or whatever you are rotating. Below is my implementation for a turret system.
//Project to plane
float distanceToPlane = Vector3.Dot(selfTransform.up, position - selfTransform.position);
Vector3 pointOnPlane = position - (selfTransform.up * distanceToPlane);
selfTransform.LookAt(pointOnPlane, selfTransform.up);
↧