From 8f63c446aa11cf54d54c95b7b84e89f487dfb28b Mon Sep 17 00:00:00 2001 From: Emiliana <38952746+emilianavt@users.noreply.github.com> Date: Tue, 29 Sep 2020 01:50:13 +0200 Subject: [PATCH] Fixed a bug that caused the `OpenSeeLauncher` to only work when `usePinvoke` was true. --- Unity/OpenSeeLauncher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Unity/OpenSeeLauncher.cs b/Unity/OpenSeeLauncher.cs index 3c76457..11cc2f8 100644 --- a/Unity/OpenSeeLauncher.cs +++ b/Unity/OpenSeeLauncher.cs @@ -284,7 +284,7 @@ public bool StartTracker() { processStartInfo.RedirectStandardError = true; processStartInfo.UseShellExecute = false; processStartInfo.FileName = exePath; - processStartInfo.Arguments = "facetracker " + argumentString; + processStartInfo.Arguments = argumentString; trackerSB = new StringBuilder(); trackerProcess = new Process();