
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
수업 내용을 따라갈 떄에는 아무 문제가 없이 Start이미지를 누를 때 Scene이 넘어갔는데
제가 따로 만든 게임에서 똑같이 했을 때에는 넘어가지 않습니다....


using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class startBtn : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void GameStart()
{
SceneManager.LoadScene("MainScene");
}
}
