https://docs.unity3d.com/kr/530/ScriptReference/EventSystems.EventSystem.IsPointerOverGameObject.html EventSystems.EventSystem-IsPointerOverGameObject - Unity 스크립팅 API Is the pointer with the given ID over an EventSystem object? docs.unity3d.com 유니티 공식 문서 if(Input.GetMouseButtonDown(0) && !EventSystem.current.IsPointerOverGameObject()) { SceneManager.LoadScene("Game"); } * GetMouseButtonDown은 터치..