Just for note when you want a UI element to face the same direction as a given camera its better to say
transform.rotation = camera.rotation
If you set it to 'look at' the camera its going to look at the camera's pivot point and depending on your canvas distance from camera and how far from center screen the element is rendering that will be off slightly. Also its unnessisary and takes more processing than simply copying the cameras world rotation though neglagably so.
So the question is do you want your element to 'face' the camera pivot or do you want it to face toward the same direction the camera is seeing.
↧