From e98ea80a6de0da7681a76ac28a73726b4b87fc26 Mon Sep 17 00:00:00 2001 From: panw Date: Tue, 12 May 2026 18:09:14 +0800 Subject: [PATCH] =?UTF-8?q?chore(game):=20=E8=B0=83=E6=95=B4=E8=8B=B1?= =?UTF-8?q?=E9=9B=84=E5=89=8D=E5=90=91=E9=94=9A=E7=82=B9=E4=B8=8E=E6=AF=8F?= =?UTF-8?q?=E8=B7=AF=E5=89=8D=E6=8E=92=E5=AE=B9=E9=87=8F=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/script/game/hero/MoveComp.ts | 2 +- assets/script/game/map/MissionHeroComp.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/script/game/hero/MoveComp.ts b/assets/script/game/hero/MoveComp.ts index 2635eebc..060ec10f 100644 --- a/assets/script/game/hero/MoveComp.ts +++ b/assets/script/game/hero/MoveComp.ts @@ -48,7 +48,7 @@ interface MoveFacConfig { @ecs.register('MoveSystem') export class MoveSystem extends ecs.ComblockSystem implements ecs.ISystemUpdate { - private readonly heroFrontAnchorX = -100; + private readonly heroFrontAnchorX = -200; private readonly monFrontAnchorX = 0; /** 常规同阵营横向最小间距(英雄) */ private readonly heroAllySpacingX = 100; diff --git a/assets/script/game/map/MissionHeroComp.ts b/assets/script/game/map/MissionHeroComp.ts index a5785605..eff62cb1 100644 --- a/assets/script/game/map/MissionHeroComp.ts +++ b/assets/script/game/map/MissionHeroComp.ts @@ -61,7 +61,7 @@ export class MissionHeroCompComp extends CCComp { /** 三路高度偏移(上路, 中路, 下路) */ private static readonly HERO_LANE_Y_OFFSETS = [100, 0, -100] /** 每路前排容量 */ - private static readonly HERO_LANE_CAP = 3 + private static readonly HERO_LANE_CAP = 2 /** 同路内 X 间距 */ private static readonly HERO_GAP_X = 100