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
이거 어디다 넣어야 돼요? ㅠㅠ
제목 | 작성자 | 작성일 | 조회 | |
---|---|---|---|---|
53448 | 03-14 | 580 | ||
53447 | 03-14 | 563 | ||
53446 | 03-14 | 541 | ||
53445 | 03-14 | 1327 | ||
53444 | 03-14 | 883 | ||
53443 | 03-14 | 800 | ||
53442 | 03-14 | 650 | ||
53441 | 03-14 | 657 | ||
53440 | 03-14 | 785 | ||
53439 | 03-14 | 537 | ||
53438 | 03-14 | 931 | ||
53437 | 03-14 | 516 | ||
53436 | 03-14 | 769 | ||
53435 | 03-14 | 827 | ||
53434 | 03-14 | 520 | ||
53433 | 03-14 | 864 | ||
53432 | 03-14 | 589 | ||
53431 | 아로나서버+2 | 03-14 | 670 | |
53430 | 03-14 | 929 | ||
53429 | 03-14 | 865 |
댓글4
내 거기에 넣어
ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ
Input
형해결함?