style: 移除无用调试日志注释并关闭任务卡牌调试模式

1. 移除SkillView.ts中多余的debugMode属性注释
2. 将MissionCardComp的默认调试模式改为关闭
This commit is contained in:
walkpan
2026-05-15 22:24:19 +08:00
parent e5e379aecc
commit f243b8edae
2 changed files with 1 additions and 2 deletions

View File

@@ -63,7 +63,7 @@ const { ccclass, property } = _decorator;
@ecs.register('MissionCard', false)
export class MissionCardComp extends CCComp {
/** 是否启用调试日志 */
private debugMode: boolean = true;
private debugMode: boolean = false;
/** 卡牌槽位宽度(像素),用于水平等距布局 */
private readonly cardWidth: number = 175;
/** 按钮正常缩放 */

View File

@@ -20,7 +20,6 @@ export class SkillView extends CCComp {
@property({ type: CCInteger })
atk_y: number = 0
@property({ tooltip: "是否启用调试日志" })
private debugMode: boolean = false;
anim:Animation=null;