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.

43 regels
604 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. },
  30. -- Player Camera Controls:
  31. camera = {
  32. zoom = {
  33. reset = 3 -- (Middle Mouse Button)
  34. }
  35. }
  36. }
  37. return controls