diff --git a/assets/script/game/hero/MoveComp.ts b/assets/script/game/hero/MoveComp.ts index e45af06d..c0479d6c 100644 --- a/assets/script/game/hero/MoveComp.ts +++ b/assets/script/game/hero/MoveComp.ts @@ -38,9 +38,9 @@ interface MoveFacConfig { export class MoveSystem extends ecs.ComblockSystem implements ecs.ISystemUpdate { private readonly ySlots = [ { offset: 0, lineName: "LINE1" }, - { offset: 15, lineName: "LINE2" }, - { offset: -15, lineName: "LINE3" }, - { offset: 30, lineName: "LINE4" }, + { offset: 30, lineName: "LINE2" }, + { offset: -30, lineName: "LINE3" }, + // { offset: 30, lineName: "LINE4" }, ]; private readonly samePointXThreshold = 12; private readonly samePointYThreshold = 3;