引导坐标

This commit is contained in:
puxuan 2025-09-22 12:00:22 +08:00
parent 79bd76cf1d
commit 58bcc1f45f

View File

@ -244,9 +244,9 @@ function BattleUI:showTutorialFinger(posIdList)
for index, posId in ipairs(posIdList) do for index, posId in ipairs(posIdList) do
local curPos = self:getPosInfo(posId) local curPos = self:getPosInfo(posId)
if index == 1 then if index == 1 then
self.tutorialFinger:setAnchoredPosition(curPos.x, curPos.y) self.tutorialFinger:setAnchoredPosition(curPos.x, curPos.y - 47)
else else
table.insert(path, curPos) table.insert(path, {x = curPos.x, y = curPos.y - 47})
count = count + 1 count = count + 1
end end
end end