I've built a simple 3D scene and put some 2D sprites in the scene. I have a camera that overlooks all 8 sprites. There are 4 close to the camera and 4 far away in the distance. I'm trying to programmatically manipulate the camera as the player interacts with the game. I have spent about 4 hours on this and have learned a lot about it but I am still unable to get it to work correctly. I would appreciate some help.
Here are the two things I want the camera to be able to do:
1. When one of the four characters in the foreground are clicked I want the camera to rotate towards the character and zoom to a certain distance away from the selected character.
2. I want to at some point zoom the camera in on the 4 characters in the distance.
Both of these things need to be interpolated so that the camera repositions itself over maybe 500 ms.
I can quite easily make the camera look at the selected character with this code:
Camera.main.transform.LookAt(transform.position);
but this doesn't result in the camera being ***animated*** to the new "look at" rotation. The other thing I can't figure out is how to translate the camera along a line that runs both through it and a target object.
Here is a screenshot of the scene. for reference.
![alt text][1]
[1]: /storage/temp/52581-camera-work.jpg
Appreciate any help!
↧