Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

controls.lua 635 B

il y a 2 ans
il y a 2 ans
il y a 2 ans
12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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