Hi,
Currently, I have a camera set to follow the hero in a 2d game. The current camera focuses on the hero and stays in the center of the screen, but I would like the camera to follow the hero but stay at the bottom of the screen. How would I do that? I have a very simple camera script.
Here is a snippet:
function Update (){
transform.eulerAngles = Vector3(0,0,0);
}
How do I accomplish my goal? Other than the above script, the camera values are the default settings.
Thank you for your assistance.