fix: 调整英雄与怪物的位置锚点及出生点X坐标
将英雄前方锚点从-30改为-50,怪物前方锚点从30改为50,使战斗站位更合理。 同时将怪物出生槽位起始X坐标从30调整为50,以匹配新的锚点位置。
This commit is contained in:
@@ -57,7 +57,7 @@ export class MissionMonCompComp extends CCComp {
|
||||
/** Boss 的渲染优先级偏移(确保 Boss 始终渲染在最前) */
|
||||
private static readonly BOSS_RENDER_PRIORITY = 1000000;
|
||||
/** 第一个槽位的 X 坐标起点 */
|
||||
private static readonly MON_SLOT_START_X = 30;
|
||||
private static readonly MON_SLOT_START_X = 50;
|
||||
/** 槽位间的 X 间距 */
|
||||
private static readonly MON_SLOT_X_INTERVAL = 60;
|
||||
/** 怪物出生掉落高度 */
|
||||
|
||||
Reference in New Issue
Block a user