Guest User

Untitled

a guest
Apr 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. ########### TREE FORMAT ###########
  2. Name: Oscillator
  3. DefaultOffset: (0,0)
  4. Generation 1:
  5. Representation:
  6. .o.
  7. .o.
  8. .o.
  9. Generation 2:
  10. GenerationOffset: (-1,-1)
  11. Representation:
  12. .....
  13. .....
  14. .ooo.
  15. .....
  16. Generation 3:
  17. GenerationOffset: (1,0)
  18. Representation:
  19. o...
  20. o...
  21. o...
  22. ....
  23.  
  24. ########### FLAT FORMAT ###########
  25. # Generation 1
  26. TopLeft (0,0)
  27. .o.
  28. .o.
  29. .o.
  30.  
  31. # Generation 2
  32. TopLeft (0,0)
  33. ...
  34. ooo
  35. ...
  36.  
  37. # Generation 3
  38. TopLeft (0,0)
  39. .o.
  40. .o.
  41. .o.
  42.  
  43. ########### JSON FORMAT ###########
  44. {
  45. "name" : "oscillator",
  46. "generations":
  47. [
  48. {
  49. "number" : 1,
  50. "xOffset": 0,
  51. "yOffset": 0,
  52. "content":
  53. "
  54. .O.
  55. .O.
  56. .O.
  57. "
  58. },
  59. {
  60. "number" : 2,
  61. "xOffset": 0,
  62. "yOffset": 0,
  63. "content":
  64. "
  65. ...
  66. OOO
  67. ...
  68. "
  69. },
  70. {
  71. "number" : 3,
  72. "xOffset": 0,
  73. "yOffset": 0,
  74. "content":
  75. "
  76. .O.
  77. .O.
  78. .O.
  79. "
  80. }
  81. ]
  82. }
Add Comment
Please, Sign In to add comment