Firstborn/Library/PackageCache/com.unity.collab-proxy@1.17.7/Editor/PlasticSCM/PlasticMenuItem.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

29 lines
685 B
C#

using UnityEditor;
using Unity.PlasticSCM.Editor.UI;
namespace Unity.PlasticSCM.Editor
{
internal static class PlasticMenuItem
{
[MenuItem(MENU_ITEM_NAME, false)]
static void ShowPanel()
{
if (PlasticProjectOfflineMode.IsEnabled())
{
PlasticProjectOfflineMode.Disable();
PlasticPlugin.Enable();
}
ShowWindow.Plastic();
}
[MenuItem(MENU_ITEM_NAME, true)]
static bool ValidateMenu()
{
return !CollabPlugin.IsEnabled();
}
const string MENU_ITEM_NAME = "Window/" + UnityConstants.PLASTIC_WINDOW_TITLE;
}
}