EngediKimHyeYoung / Unity

0 stars 0 forks source link

씬 이동: 메인으로 가기 #3

Open EngediKimHyeYoung opened 2 years ago

EngediKimHyeYoung commented 2 years ago

using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement;

public class StartGame : MonoBehaviour { public void StartBtn() { SceneManager.LoadScene("Main"); } }