Ошибка Unity: MissingComponnetException с камерой - PullRequest
1 голос
/ 01 февраля 2020

Я пытаюсь изменить положение камеры с помощью сценария GameManager, но с такой ошибкой:

< MissingComponentException: There is no 'Camera' attached to the "Game Manager" game object, but a script is trying to access it.
You probably need to add a Camera to the game object "Game Manager". Or your script needs to check if the component is attached before using it. >
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager: MonoBehaviour
{
    public GameObject maincamera;
    public void Awake () 
    {
        maincamera = GameObject.Find("Camera");
        maincamera.transform.position = new Vector3(1, 1, 1);
    }
}

Может кто-нибудь объяснить, что я ошибаюсь, и как я могу это исправить?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...