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
이거 어디다 넣어야 돼요? ㅠㅠ
| 제목 | 작성자 | 작성일 | 조회 | |
|---|---|---|---|---|
| 공지 | 게시판 이용 안내+156 | 10-20 | 22540 | |
| 61845 | 02-06 | 176 | ||
| 61844 | 02-06 | 169 | ||
| 61843 | 02-06 | 177 | ||
| 61842 | 02-03 | 584 | ||
| 61841 | 02-02 | 1120 | ||
| 61840 | 02-01 | 1049 | ||
| 61839 | 02-01 | 940 | ||
| 61838 | 02-01 | 885 | ||
| 61837 | 01-29 | 1324 | ||
| 61836 | 01-29 | 1336 | ||
| 61835 | 01-28 | 1731 | ||
| 61834 | 01-28 | 1684 | ||
| 61833 | 메렌h 구해요+1 | 01-28 | 1573 | |
| 61832 | 01-24 | 2539 | ||
| 61831 | 01-23 | 2241 | ||
| 61830 | 01-23 | 2311 | ||
| 61829 | 01-23 | 2173 | ||
| 61828 | 01-23 | 2213 | ||
| 61827 | 01-23 | 2255 |
댓글4
내 거기에 넣어
ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ
Input
형해결함?