유니티 C# 씬 로드 동기, 비동기 간단 사용법 Load Scene Async


유니티 C# 씬 로드 동기, 비동기 간단 사용법 Load Scene Async

씬 동기 로드 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class Example : MonoBehaviour { public void LoadScene(int number) { SceneManager.LoadScene(number); } public void LoadScene(string name) { SceneManager.LoadScene(name); } } 씬 비동기 로드 using System.Collections; using System.Collections.Generic; using..


원문링크 : 유니티 C# 씬 로드 동기, 비동기 간단 사용법 Load Scene Async