技能主要更新,修复卡顿并加入动画,以及各种其他更新。

This commit is contained in:
2026-02-07 21:05:17 +08:00
parent abeca51be5
commit 1ac3cd0104
1349 changed files with 1526749 additions and 24850 deletions
+21
View File
@@ -0,0 +1,21 @@
using System;
using MCPForUnity.Editor.Constants;
using MCPForUnity.Editor.Services.Transport.Transports;
using UnityEditor;
namespace MCPForUnity.Editor
{
public static class McpCiBoot
{
public static void StartStdioForCi()
{
try
{
EditorPrefs.SetBool(EditorPrefKeys.UseHttpTransport, false);
}
catch { /* ignore */ }
StdioBridgeHost.StartAutoConnect();
}
}
}