Advertisement
Guest User

Everspace 2 JoyShockMapper config (requires in game input config changes)

a guest
Apr 8th, 2023
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | Gaming | 0 0
  1. # This configuration file will map a virtual xbox controller from Dualshock 4 controller.
  2. # Config will map to mostly Xbox controller equivalent buttons while adding a gyro mouse.
  3. # I made the following changes in custom config:
  4. # Mouse cursor floating (not centered)
  5.  
  6. ### IMPORTANT! ###
  7. # In settings - Input - Customize controls - Input method override: Mouse & Keyboard
  8. # This prevents the autodetect from disabling mouse input when a gamepad input is applied
  9.  
  10. # I found following custom controls promising:
  11. # Set hover axis to right stick up and down, but increase the dead zone to 0.15
  12. # Unbind hover up and hover down from LT and LB
  13. # Set roll axis to right stick left and right, but increase the dead zone to 0.25
  14. # Bind boost [HOLD] to LT
  15. # These changes allow me to make use of the right stick since it is not needed for flick sticking in this game.
  16. # I found these to be a bit annoying with default dead zones since they would often unintentionally fire roll/hover
  17. # when attempting to only use the other.
  18.  
  19. RESET_MAPPINGS
  20.  
  21. IGNORE_OS_MOUSE_SPEED
  22. IN_GAME_SENS = 0.5
  23. VIRTUAL_CONTROLLER = XBOX
  24.  
  25. UP = X_UP
  26. DOWN = X_DOWN
  27. LEFT = X_LEFT
  28. RIGHT = X_RIGHT
  29. L = X_LB
  30. R = X_RB
  31. # W = X_X
  32. W = 1
  33. S = F
  34. N = X_Y
  35. # E = X_B
  36. E = 5
  37. L3 = X_LS
  38. R3 = X_RS
  39. - = X_BACK
  40. + = X_START
  41. HOME = CALIBRATE
  42. ZL_MODE = X_LT
  43. ZR_MODE = X_RT
  44. LEFT_STICK_MODE = LEFT_STICK
  45. RIGHT_STICK_MODE = RIGHT_STICK
  46. CAPTURE = NONE
  47. GRID_SIZE = 2 2
  48. T1,CAPTURE = ESC
  49. T2,CAPTURE = R
  50. T3,CAPTURE = LMOUSE
  51. T4,CAPTURE = RMOUSE
  52.  
  53.  
  54. # Gyro aim settings
  55. MIN_GYRO_SENS = 0.75
  56. MAX_GYRO_SENS = 0.75
  57.  
  58. # Gyro thresholds are in degrees per second
  59. MIN_GYRO_THRESHOLD = 0
  60. MAX_GYRO_THRESHOLD = 75
  61.  
  62. # Since LB is not needed for hover up, use it for gyro ratcheting instead
  63. GYRO_OFF = L
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement