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.15.4/Editor/PlasticSCM/PlasticMenuItem.cs
2022-11-12 13:10:03 +01:00

23 lines
508 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()
{
ShowWindow.Plastic();
}
[MenuItem(MENU_ITEM_NAME, true)]
static bool ValidateMenu()
{
return !CollabPlugin.IsEnabled();
}
const string MENU_ITEM_NAME = "Window/" + UnityConstants.PLASTIC_WINDOW_TITLE;
}
}