feat: 为升级事件添加调试日志

在 SingletonModuleComp 和 HeroAttrsComp 中添加详细的日志记录,用于追踪升级事件的触发、监听、移除和处理流程,便于调试和问题排查。
This commit is contained in:
walkpan
2026-02-05 08:01:06 +08:00
parent 3d089885ce
commit 878ca8ed77
2 changed files with 5 additions and 1 deletions

View File

@@ -220,6 +220,7 @@ export class SingletonModuleComp extends ecs.Comp {
}
h.exp_pre=Math.round(h.exp/h.exp_max*100)
if (isLevelUp) {
mLogger.log(this.debugMode, 'SMC', `[SMC] 触发升级事件: Lv.${h.lv}`);
// 发送升级事件
oops.message.dispatchEvent(GameEvent.CanUpdateLv, { lv: h.lv });
}