1.4.7开发
All checks were successful
Plugin Library CI / publish (00.BuildOriginality) (push) Successful in 4s
Plugin Library CI / publish (00.StaryEvo) (push) Successful in 4s
Plugin Library CI / publish (00.StaryEvoTools) (push) Successful in 20s
Plugin Library CI / publish (01.HybridCLR) (push) Successful in 4s
Plugin Library CI / publish (02.InformationSave) (push) Successful in 3s
Plugin Library CI / publish (03.YooAsset) (push) Successful in 33s
Plugin Library CI / publish (04.AudioCore) (push) Successful in 3s
Plugin Library CI / publish (05.TableTextConversion) (push) Successful in 4s
Plugin Library CI / publish (06.UIFarme) (push) Successful in 16s
Plugin Library CI / publish (07.RKTools) (push) Successful in 3s
Plugin Library CI / publish (08.UniTask) (push) Successful in 3s
Plugin Library CI / publish (09.CodeChecker) (push) Successful in 16s
Plugin Library CI / publish (10.StoryEditor) (push) Successful in 3s
Plugin Library CI / publish (10.XNode) (push) Successful in 3s
Plugin Library CI / publish (11.PointCloudTools) (push) Successful in 2s

This commit is contained in:
2026-04-16 23:48:13 +08:00
parent b44f166084
commit 5bb5f8a410
2 changed files with 5 additions and 4 deletions

View File

@@ -19,6 +19,7 @@ namespace Stary.Evo.Editor
private const string EditorSimulateMode = "Evo/Schema/ChangePlayer/EditorSimulateMode(编辑器调试模式)";
private const string HostPlayMode = "Evo/Schema/ChangePlayer/HostPlayMode(联机运行模式)";
private const string LocalPlayMode = "Evo/Schema/ChangePlayer/LocalPlayMode(本地运行模式)";
private const string WebPlayMode = "Evo/Schema/ChangePlayer/WebPlayMode(Web运行模式)";
// Web 子模式菜单路径(作为 WebPlayMode 的子菜单)
private const string WebNormalSubMode = "Evo/Schema/ChangePlayer/WebPlayMode(Web运行模式)/WebGL 普通模式";
@@ -34,7 +35,7 @@ namespace Stary.Evo.Editor
[MenuItem(LocalPlayMode, false, 3)]
private static void SetLocalMode() => SetPlayerMode(PLayerMode.LOCAL_PLAYMODE);
#endregion
@@ -63,7 +64,7 @@ namespace Stary.Evo.Editor
return true;
}
[MenuItem(WebNormalSubMode, true)]
[MenuItem(WebNormalSubMode, false)]
private static bool ValidateWebNormalMenu()
{
// 只在 WebPlayMode 下启用子菜单
@@ -73,7 +74,7 @@ namespace Stary.Evo.Editor
return isWebMode;
}
[MenuItem(WechatMiniSubMode, true)]
[MenuItem(WechatMiniSubMode, false)]
private static bool ValidateWechatMiniMenu()
{
bool isWebMode = _pLayerMode == PLayerMode.WEB_PLAYMODE;

View File

@@ -1,6 +1,6 @@
{
"name": "com.staryevo.tools",
"version": "1.4.6",
"version": "1.4.7",
"displayName": "00.StaryEvo.Tools",
"description": "This is an Framework package(后台服务器版本端口9527)",
"unity": "2021.3",