NAME_OF_SONG.csf 669 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "meta": {
  3. "title": "title of song",
  4. "subtitle": "subtitle of song",
  5. "author": "author of song",
  6. "creator": "creator of song",
  7. "BPM": 0
  8. },
  9. "file": {
  10. "audio": "song audio file",
  11. "background": "song background image",
  12. "banner": "song banner image"
  13. },
  14. "data": [
  15. {
  16. "difficulty": "easy",
  17. "objects": [
  18. {
  19. "time": 1,
  20. "direction": 1,
  21. "color": "BLUE",
  22. "hold": true,
  23. "length": 1000
  24. },
  25. {
  26. "time": 16,
  27. "direction": 6,
  28. "color": "YELLOW"
  29. }
  30. ]
  31. },
  32. {
  33. "difficulty": "medium",
  34. "objects": [
  35. {
  36. "time": 4,
  37. "direction": 3,
  38. "color": "PURPLE"
  39. },
  40. {
  41. }
  42. ]
  43. }
  44. ]
  45. }