local LeftShift_pressed = false
return function (self, event)
local key = self:RedirectKey(event.key)
if (key == KeyboardKey.DownArrow) then
self.SystemInputs[_FuncKeySystemType.Down] = true
elseif (key == KeyboardKey.UpArrow) then
self.SystemInputs[_FuncKeySystemType.Up] = true
elseif (key == KeyboardKey.LeftArrow) then
self.SystemInputs[_FuncKeySystemType.Left] = true
elseif (key == KeyboardKey.RightArrow) then
self.SystemInputs[_FuncKeySystemType.Right] = true
elseif (key == KeyboardKey.Escape) then
self.SystemInputs[_FuncKeySystemType.Esc] = true
else
-- Your existing code for handling other keys
-- ...
if LeftShift_pressed then
LeftShift_pressed = false
end
end
if KeyboardKey.X == key then -- 텔 단축키
LeftShift_pressed = true
elseif LeftShift_pressed then
local currentPosition = _UserService.LocalPlayer.TransformComponent.WorldPosition
local newXPosition, newYPosition
if KeyboardKey.RightArrow == key then
newXPosition = currentPosition.x + tpxy
newYPosition = currentPosition.y + tpxy
elseif KeyboardKey.LeftArrow == key then
newXPosition = currentPosition.x - tpxy
newYPosition = currentPosition.y + tpxy
elseif KeyboardKey.UpArrow == key then
newXPosition = currentPosition.x - tpxy
newYPosition = currentPosition.y - tpxy
elseif KeyboardKey.DownArrow == key then
newXPosition = currentPosition.x + tpxy
newYPosition = currentPosition.y - tpxy
end
local newPosition = Vector2(newXPosition, newYPosition)
_UserService.LocalPlayer.MovementComponent:SetWorldPosition(newPosition)
end
-- Your existing code for handling other keys
-- ...
end
이거 어디다 넣어야 돼요? ㅠㅠ
제목 | 작성자 | 작성일 | 조회 | |
---|---|---|---|---|
공지 | 게시판 이용 안내+151 | 10-20 | 21357 | |
61246 | 17:29 | 8 | ||
61245 | 16:51 | 28 | ||
61244 | 14:50 | 39 | ||
61243 | 14:09 | 66 | ||
61242 | 11:30 | 78 | ||
61241 | 08-23 | 252 | ||
61240 | 08-23 | 226 | ||
61239 | 08-23 | 198 | ||
61238 | 08-23 | 171 | ||
61237 | 08-23 | 257 | ||
61236 | 08-23 | 196 | ||
61235 | 08-23 | 192 | ||
61234 | 08-23 | 230 | ||
61233 | 08-23 | 216 | ||
61232 | 08-23 | 267 | ||
61231 | 08-23 | 331 | ||
61230 | 08-23 | 325 | ||
61229 | 08-23 | 377 | ||
61228 | 08-23 | 296 |
댓글4
내 거기에 넣어
ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ
Input
형해결함?