fix: 调整组件注册和调试模式设置

将TalComp组件注册参数改为true以启用组件
关闭HeroAtkSystem的调试模式
This commit is contained in:
walkpan
2026-01-04 18:19:47 +08:00
parent 9ada743451
commit 9e56aeda6f
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ export interface TalSlot {
* - 检查并触发满足条件的天赋
* - 管理天赋效果数值
*/
@ecs.register('TalComp', false)
@ecs.register('TalComp', true)
export class TalComp extends ecs.Comp {
/** 英雄视图组件引用,运行时获取以避免循环引用 */
private heroView: any = null;