50_dbg Bumpers.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "balls": [
  3. {
  4. "position": [ 250, 50 ]
  5. }
  6. ],
  7. "flippers": [
  8. {
  9. "position": [ 170, 1080 ],
  10. "side": "LEFT",
  11. "size": 120
  12. },
  13. {
  14. "position": [ 470, 1080 ],
  15. "side": "RIGHT",
  16. "size": 120
  17. }
  18. ],
  19. "bumpers": [
  20. {
  21. "position": [ 200, 260 ],
  22. "radius": 60
  23. },
  24. {
  25. "position": [ 450, 200 ],
  26. "radius": 60
  27. },
  28. {
  29. "position": [ 280, 550 ],
  30. "radius": 80
  31. },
  32. {
  33. "position": [ 480, 500 ],
  34. "radius": 85
  35. }
  36. ],
  37. "rails": [
  38. // left wall
  39. {
  40. "start": [ 0, 0 ],
  41. "end": [ 0, 1080 ]
  42. },
  43. // right wall
  44. {
  45. "start": [ 630, 1080 ],
  46. "end": [ 630, 0 ]
  47. },
  48. // bottom left
  49. {
  50. "start": [ 0, 1080 ],
  51. "end": [ 220, 1180 ]
  52. },
  53. // bottom right
  54. {
  55. "start": [ 420, 1180 ],
  56. "end": [ 630, 1080 ]
  57. }
  58. ]
  59. }