Модуль "waw Unity!"
/** CameraContoller.cs
*/
using UnityEngine;
public class CameraController : MonoBehaviour{ public Transform target; public Vector3 offset = new Vector3(0, 2, -10);
// Start is called once before the first //execution of Update after the MonoBehaviour is created void Start() { }
// Update is called once per frame void Update() { }
private void LateUpdate() { transform.position = target.position + offset; }}

