Здравствуйте, у меня есть простой префаб танк, который создан в начале игры. Хочу найти в нем дочерний gameObject
public class GameManager : MonoBehaviour {
public GameObject tankPrefab;
private GameObject playerTank;
// Start is called before the first frame update
void Start () {
GameObject inst = Instantiate (tankPrefab, new Vector3 (0, 0, 0), Quaternion.identity);
playerTank = inst.gameObject.Find ("Body");
}
// Update is called once per frame
void Update () { }
}
Получаю ошибку
Assets\Scripts\GameManager.cs(14,22): error CS0176: Member 'GameObject.Find(string)' cannot be accessed with an instance reference; qualify it with a type name instead
Как исправить?