채팅0

    마법사 분기 이동(쿼터무브) 스크립트

    조회수 1018

    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

    댓글4

    회원프로필

    2024.03.11 01:56
    회원프로필

    이 스크립트를 어디에 추가하는걸까요?

    2024.03.11 05:42
    회원프로필

    어느 스크립트에 추가하면 되는걸까요..?

    2024.03.11 10:33
    회원프로필

    이대로 하니까 키 먹통이던데 다른 방법이 있나용? ㅠㅠ

    2024.03.11 15:02

      게시글 리스트
      제목작성자작성일조회
      공지10-2021577
      6138105:2829
      6138009-18179
      6137909-18267
      6137809-18255
      6137709-18261
      6137609-17242
      6137509-17390
      6137409-17308
      6137309-16546
      6137209-16567
      6137109-16712
      6137009-16668
      6136909-16711
      6136809-15631
      6136709-15680
      6136609-15588
      6136509-15686
      6136409-15586
      6136309-15704