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.

46 line
635 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. engine = "space",
  20. rotleft = "q",
  21. rotright = "e"
  22. },
  23. -- Time Warp Controls:
  24. warp = {
  25. reset = "-",
  26. down = ",",
  27. up = "."
  28. },
  29. -- Special
  30. special = "f"
  31. },
  32. -- Player Camera Controls:
  33. camera = {
  34. zoom = {
  35. reset = 3 -- (Middle Mouse Button)
  36. }
  37. }
  38. }
  39. return controls