diff --git a/assets/script/game/map/MissionCardComp.ts b/assets/script/game/map/MissionCardComp.ts index e8152408..a6f380cf 100644 --- a/assets/script/game/map/MissionCardComp.ts +++ b/assets/script/game/map/MissionCardComp.ts @@ -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; /** 按钮正常缩放 */ diff --git a/assets/script/game/skill/SkillView.ts b/assets/script/game/skill/SkillView.ts index 22ba9954..a3a9ed3d 100644 --- a/assets/script/game/skill/SkillView.ts +++ b/assets/script/game/skill/SkillView.ts @@ -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;