From fedf7f9c98b9a8f6b38bf7bee8a609ec9913dbda Mon Sep 17 00:00:00 2001
From: GeWuYou <95328647+GeWuYou@users.noreply.github.com>
Date: Sat, 17 Jan 2026 19:49:53 +0800
Subject: [PATCH] =?UTF-8?q?refactor(PageControllerTemplate):=20=E7=A7=BB?=
=?UTF-8?q?=E9=99=A4=E6=B5=8B=E8=AF=95=E6=97=A5=E5=BF=97=E4=BB=A3=E7=A0=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 删除了页面进入方法中的测试日志输出
- [skip ci]
---
Godot/script_templates/Node/PageControllerTemplate.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Godot/script_templates/Node/PageControllerTemplate.cs b/Godot/script_templates/Node/PageControllerTemplate.cs
index 808c1d1..cdcd574 100644
--- a/Godot/script_templates/Node/PageControllerTemplate.cs
+++ b/Godot/script_templates/Node/PageControllerTemplate.cs
@@ -42,7 +42,7 @@ public partial class _CLASS_ :_BASE_,IController,IUiPageBehaviorProvider,IUiPage
/// 页面进入参数,可能为空
public void OnEnter(IUiPageEnterParam? param)
{
- _log.Info("测试主菜单 OnEnter");
+
}
///
/// 页面退出时调用的方法