
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
4) gameManager.cs 에서 네모를 만들기 부분을 학습중인데, 아무리 코드를 지우고 다시 적어봐도 같은 오류 메시지가 뜨면서 네모가 만들어지지 않네요. 마우스 포인터 관련 스크립트는 정상작동됩니다.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class gameManager : MonoBehaviour
{
public GameObject square;
// Start is called before the first frame update
void Start()
{
InvokeRepeating("makeSquare", 0.0f, 0.5f);
}
// Update is called once per frame
void Update()
{
}
void makeSquare()
{
Instantiate(square);
}
}
