
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
start버튼에 startButton.cs 를 넣고 난 후 해당하는 함수를 찾을 수가 없습니다. 코드에 오류가 있는 것 일까요?

작성한 코드 및 에러 메세지
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class StartButton : MonoBehaviour
{
public void GameStart()
{
SceneManager.LoadScene("MainScene");
}
}
