We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3275a1e + 8c3fede commit d0cb4afCopy full SHA for d0cb4af
Packages/ReachySimulator/Editor/DownloadTask.cs
@@ -4,6 +4,7 @@
4
using System.Net;
5
using System.IO.Compression;
6
7
+#if UNITY_EDITOR
8
public class DownloadTask
9
{
10
private static string savePath;
@@ -32,4 +33,5 @@ private static async Task _Unzip()
32
33
34
await Task.Run(() => ZipFile.ExtractToDirectory(savePath, @"Assets/"));
35
}
-}
36
+}
37
+#endif
Packages/ReachySimulator/Editor/MenuConfiguration.cs
@@ -3,6 +3,7 @@
3
using UnityEngine;
using UnityEditor;
public class MenuConfiguration : Editor
@@ -14,3 +15,4 @@ static void InstallGRPC()
14
15
DownloadTask.RunTask();
16
17
18
0 commit comments