浏览代码

Fix OSX typo + remove printing

/pyrception-integration
leopoldo-zugasti 3 年前
当前提交
09663984
共有 1 个文件被更改,包括 2 次插入8 次删除
  1. 10
      com.unity.perception/Editor/Pyrception/PyrceptionInstaller.cs

10
com.unity.perception/Editor/Pyrception/PyrceptionInstaller.cs


EditorUtility.ClearProgressBar();
}
#if UNITY_EDITOR_OX
#if UNITY_EDITOR_OSX
void OnDestroy()
{
KillProcess();

{
if (currentProcessId != -1)
{
UnityEngine.Debug.Log($"Process is alive - {currentProcessId}");
if (proc == null)
{
UnityEngine.Debug.Log("Could not find process");
}
proc.Kill();
currentProcessId = -1;
}

Directory.Delete(target_dir, false);
}
}
}
正在加载...
取消
保存