private void _QuitOnConnectionErrors() { // Do not update if ARCore is not tracking. if (Session.ConnectionState == SessionConnectionState.DeviceNotSupported) { _ShowAndroidToastMessage("This device does not support ARCore."); Application.Quit(); } ... } Session.ConnectionState が SessionConnectionState.DeviceNotSupported になると上記エラーを出力するので、SessionConnectionState.DeviceNotSupportedを設定しないようにする。 Sessio