Added automatic toolchain, gcc and make installation

This commit is contained in:
2025-04-15 13:17:30 +02:00
parent 4cebe93c34
commit 2013e31b04
11 changed files with 656 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
using UnityEditor;
using UnityEditor.Callbacks;
[InitializeOnLoad]
public static class DependencyCheckInitializer
{
static DependencyCheckInitializer()
{
EditorApplication.update += OpenInstallerOnStart;
}
private static void OpenInstallerOnStart()
{
EditorApplication.update -= OpenInstallerOnStart;
if (!SessionState.GetBool("InstallerWindowOpened", false))
{
InstallerWindow.ShowWindow();
SessionState.SetBool("InstallerWindowOpened", true); // only once per session
}
}
}