Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Unity/Farmlanders/Library/PackageCache/com.unity.collab-proxy@1.17.7/Editor/PlasticSCM/VCSPlugin.cs
2023-07-31 21:20:56 +02:00

38 lines
835 B
C#

using UnityEditor;
namespace Unity.PlasticSCM.Editor
{
internal static class VCSPlugin
{
internal static bool IsEnabled()
{
return GetVersionControl() == "PlasticSCM";
}
internal static void Disable()
{
SetVersionControl("Visible Meta Files");
AssetDatabase.SaveAssets();
}
static string GetVersionControl()
{
#if UNITY_2020_1_OR_NEWER
return VersionControlSettings.mode;
#else
return EditorSettings.externalVersionControl;
#endif
}
static void SetVersionControl(string versionControl)
{
#if UNITY_2020_1_OR_NEWER
VersionControlSettings.mode = versionControl;
#else
EditorSettings.externalVersionControl = versionControl;
#endif
}
}
}