Firstborn/Library/PackageCache/com.unity.collab-proxy@2.0.3/Editor/PlasticSCM/VCSPlugin.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05: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
}
}
}