From e378d241ad4843dd4d93c1a9b9cd39e9f1f53e6c Mon Sep 17 00:00:00 2001 From: Blank Date: Thu, 16 Jul 2026 20:44:11 +0800 Subject: [PATCH] =?UTF-8?q?fix(welcome):=20=E4=BF=AE=E6=AD=A3=20UI=20?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E5=B8=AE=E5=8A=A9=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 欢迎界面的 UI 系统入口指向旧文档路径,更新为当前客户端 Unity UI 概览页面。 Closes #8 --- Editor/Welcome/WelcomeWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Editor/Welcome/WelcomeWindow.cs b/Editor/Welcome/WelcomeWindow.cs index 8e72c28..f0b8b14 100644 --- a/Editor/Welcome/WelcomeWindow.cs +++ b/Editor/Welcome/WelcomeWindow.cs @@ -159,7 +159,7 @@ private void OnGUI() DrawSection("通信协议", "查看通信协议的规范和要求相关内容", "https://gameframex.doc.alianblank.com/protobuf/note.html"); // UI 系统部分 - DrawSection("UI 系统", "查看 UI 系统相关内容", "https://gameframex.doc.alianblank.com/unity/component/ui.html"); + DrawSection("UI 系统", "查看 UI 系统相关内容", "https://gameframex.doc.alianblank.com/client/unity/component/ui/01.overview.html"); // BUG 反馈部分 DrawSection("BUG 反馈", "反馈 BUG", "https://github.com/GameFrameX/GameFrameX/issues/new"); @@ -214,4 +214,4 @@ private void OnDisable() EditorPrefs.SetBool(ShowOnStartupKey, showOnStartup); } } -} \ No newline at end of file +}