728x90 additive load1 Unity & C# ~ Additive Load된 씬의 라이팅 세팅 가져오는 법 유니티 라이팅 세팅은 활성화된 씬의 세팅을 가져오는데 additive load된 씬은 활성화된 씬이 아니기 때문에 additive laod된 씬의 라이팅 정보를 가져오지 않는다. 그래서 additive load할 씬의 라이팅 정보를 가져와 적용할 때는 해당 씬을 활성화 시켜줘야 한다. using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class TestAdditiveSceneManager : MonoBehaviour { [SerializeField] Button button; // Start is called before the first frame update void Start() { button.onC.. 2023. 2. 9. 이전 1 다음 SMALL