Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable completions, update eldoc + eldoc for static clr methods #389

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions Editor/ArcadiaProjectInitialization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ static ArcadiaProjectInitialization()

public static void CheckSettings()
{
Debug.Log("Checking Unity Settings...");
if (!Application.unityVersion.StartsWith("2018")) // gross string comparison, not sure we can avoid
{
Debug.LogWarningFormat("Expected Unity version 2018.x, got {0}. This might cause issues.", Application.unityVersion);
}

//Debug.Log("Checking Unity Settings...");
//if (!Application.unityVersion.StartsWith("2018")) // gross string comparison, not sure we can avoid
//{
//Debug.LogWarningFormat("Expected Unity version 2018.x, got {0}. This might cause issues.", Application.unityVersion);
//}

if (PlayerSettings.GetApiCompatibilityLevel(BuildTargetGroup.Standalone) != ApiCompatibilityLevel.NET_4_6)
{
Expand Down
2 changes: 1 addition & 1 deletion Editor/Initialization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public static void Initialize()
NRepl.StartServer();
#endif
StartNudge();
Debug.Log("Arcadia Started!");
//Debug.Log("Arcadia Started!");

initialized = true;
}
Expand Down
Loading