fix(战斗): 调整远程站位距离并优化移动系统注释与逻辑

- 将远程职业的固定站位X坐标从180减少至120,以改善阵型布局
- 为移动系统组件和配置添加详细注释,说明各字段用途和逻辑规则
- 调整同阵营横向最小间距从40增加至50,减少单位重叠
- 优化近战超车逻辑,明确超车条件和优先级判定
- 改进代码可读性,添加关键逻辑点的解释说明
This commit is contained in:
panw
2026-03-27 10:08:11 +08:00
parent a42d34b003
commit ad5758c6e7
2 changed files with 55 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ export const HeroPos={
export const FormationPointX = {
[HType.Melee]: 0,
[HType.Mid]: 100,
[HType.Long]: 180,
[HType.Long]: 120,
} as const;
export const HeroDisVal: Record<HType.Melee | HType.Mid | HType.Long, number> = {