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
이거 어디다 넣어야 돼요? ㅠㅠ
제목 | 작성자 | 작성일 | 조회 | |
---|---|---|---|---|
54154 | 03-17 | 708 | ||
54153 | 03-17 | 643 | ||
54152 | 03-17 | 713 | ||
54151 | 03-17 | 640 | ||
54150 | 듚 뭔 말임+2 | 03-17 | 830 | |
54149 | 03-17 | 2012 | ||
54148 | 03-17 | 625 | ||
54147 | 03-17 | 691 | ||
54146 | 03-17 | 702 | ||
54145 | 03-17 | 1106 | ||
54144 | 03-17 | 663 | ||
54143 | 03-17 | 664 | ||
54142 | 03-17 | 765 | ||
54141 | 03-17 | 651 | ||
54140 | 03-17 | 629 | ||
54139 | 03-17 | 882 | ||
54138 | 03-17 | 600 | ||
54137 | 03-17 | 695 | ||
54136 | 03-17 | 721 | ||
54135 | 03-17 | 571 |
댓글4
내 거기에 넣어
ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ
Input
형해결함?