fix: 调整近战与远程英雄的初始站位距离
将近战英雄的初始站位距离从360减少至260,远程英雄从720减少至660,以优化阵型布局和战斗初始位置。
This commit is contained in:
@@ -26,9 +26,9 @@ export const FormationPointX = {
|
|||||||
} as const;
|
} as const;
|
||||||
|
|
||||||
export const HeroDisVal: Record<HType.Melee | HType.Mid | HType.Long, number> = {
|
export const HeroDisVal: Record<HType.Melee | HType.Mid | HType.Long, number> = {
|
||||||
[HType.Melee]: 360,
|
[HType.Melee]: 260,
|
||||||
[HType.Mid]: 400,
|
[HType.Mid]: 400,
|
||||||
[HType.Long]: 720,
|
[HType.Long]: 660,
|
||||||
}
|
}
|
||||||
|
|
||||||
export const resolveFormationTargetX = (fac: FacSet, type: HType): number => {
|
export const resolveFormationTargetX = (fac: FacSet, type: HType): number => {
|
||||||
|
|||||||
Reference in New Issue
Block a user