Revert "attempt to fix bootstrapper crashes"
This reverts commit fa6c8e9a0e.
This commit is contained in:
parent
1f81e535fe
commit
d0a6a0ac19
|
|
@ -1312,6 +1312,7 @@ public partial class AssetSDK : Form
|
|||
proc.StartInfo.FileName = EXEName;
|
||||
proc.StartInfo.Arguments = "\"" + FileName + "\" " + MeshConverter_MeshVersionSelector.Text;
|
||||
proc.StartInfo.CreateNoWindow = false;
|
||||
proc.StartInfo.UseShellExecute = false;
|
||||
proc.StartInfo.RedirectStandardOutput = true;
|
||||
proc.EnableRaisingEvents = true;
|
||||
proc.Exited += new EventHandler(OBJ2MeshV1Exited);
|
||||
|
|
|
|||
|
|
@ -123,11 +123,15 @@ public partial class NovetusSDK : Form
|
|||
case SDKApps.ScriptGenerator:
|
||||
Process proc = new Process();
|
||||
proc.StartInfo.FileName = GlobalPaths.DataDir + "\\RSG.exe";
|
||||
proc.StartInfo.CreateNoWindow = false;
|
||||
proc.StartInfo.UseShellExecute = false;
|
||||
proc.Start();
|
||||
break;
|
||||
case SDKApps.LegacyPlaceConverter:
|
||||
Process proc2 = new Process();
|
||||
proc2.StartInfo.FileName = GlobalPaths.DataDir + "\\Roblox_Legacy_Place_Converter.exe";
|
||||
proc2.StartInfo.CreateNoWindow = false;
|
||||
proc2.StartInfo.UseShellExecute = false;
|
||||
proc2.Start();
|
||||
break;
|
||||
case SDKApps.DiogenesEditor:
|
||||
|
|
|
|||
Loading…
Reference in New Issue