What is the easiest way to have a plane always face the camera. If its through a script,
I can’t get transform.lookat to work.
try
transform.LookAt(target.transform.position);
This will force LookAt to look at the actual position in world space. It will work fine. This is not the same behaviour as LookAt(target.transform);
–Eric
Thanks for the help.