Решил вспомнить былое, попытался по быстрому сделать фокус объекта. Он фокусирует, но когда я нажимаю играть, то камера перестаёт объекты показывать, просто пустой экран.
-Ты видишь спрайты?
-Нет.
-И я. А они есть.
public class Focuse : MonoBehaviour {
public GameObject pers;
public float y = 1f;
// Use this for initialization
void Start () {
Vector3 temp = pers.transform.position;
temp.y += y;
transform.position = temp;
}
// Update is called once per frame
void Update () {
Vector3 temp = pers.transform.position;
temp.y += y;
transform.position = temp;
}
}