Hi I just made a 2d endless runner and this is the code i used to get the camera to follow the player (its in C#)
using UnityEngine;
using System.Collections;
public class CameraRunnerScript : MonoBehaviour {
public Transform player;
void Update ()
{
transform.position = new Vector3 (player.position.x + 6, 0, -10); // Camera follows the player but 6 to the right
}
}
it works fine following the player on the x axis but i was hoping someone could help me edit it so it follows the player on the y axis as well. thanks
↧