Advertisement
Guest User

Space Engineers Control Surface Code

a guest
Oct 21st, 2019
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. @Pitch Up{
  2. ShortRotate LeftElevator to -30 at 10
  3. ShortRotate RightElevator to -30 at 10
  4. }
  5.  
  6. @Pitch Down{
  7. ShortRotate LeftElevator to 30 at 10
  8. ShortRotate RightElevator to 30 at 10
  9. }
  10.  
  11. @Pitch Reset{
  12. ShortRotate LeftElevator to 0 at 10
  13. ShortRotate RightElevator to 0 at 10
  14. }
  15.  
  16. @Yaw Left{
  17. ShortRotate Rudder to -20 at 10
  18. }
  19.  
  20. @Yaw Right{
  21. ShortRotate Rudder to 20 at 10
  22. }
  23.  
  24. @Yaw Reset{
  25. ShortRotate Rudder to 0 at 10
  26. }
  27.  
  28. @Roll Left{
  29. ShortRotate LeftAileron to -30 at 10
  30. ShortRotate RightAileron to 15 at 5
  31. }
  32.  
  33. @Roll Left Reset{
  34. ShortRotate LeftAileron to 0 at 10
  35. ShortRotate RightAileron to 0 at 5
  36. }
  37.  
  38. @Roll Right{
  39. ShortRotate LeftAileron to 15 at 5
  40. ShortRotate RightAileron to -30 at 10
  41. }
  42.  
  43. @Roll Right Reset{
  44. ShortRotate LeftAileron to 0 at 5
  45. ShortRotate RightAileron to 0 at 10
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement