You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
546 B

  1. controls = {
  2. -- Player Flight Controls:
  3. flight = {
  4. -- Respawn on Starting Location:
  5. reset = "r",
  6. -- Change Throttle:
  7. throttle = {
  8. up = "lshift",
  9. down = "lctrl",
  10. full = "y",
  11. none = "x"
  12. },
  13. -- Directional Thrust:
  14. thrust = {
  15. up = "w",
  16. down = "s",
  17. left = "a",
  18. right = "d"
  19. },
  20. -- Time Warp Controls:
  21. warp = {
  22. reset = "-",
  23. down = ",",
  24. up = "."
  25. }
  26. },
  27. -- Player Camera Controls:
  28. camera = {
  29. zoom = {
  30. reset = 3 -- (Middle Mouse Button)
  31. }
  32. }
  33. }
  34. return controls