template.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "pool_template":[
  3. {
  4. "name":"随机",
  5. "id":"random"
  6. },
  7. {
  8. "name":"按颜色",
  9. "id":"byColor"
  10. }
  11. ],
  12. "coll_template":[
  13. {
  14. "name":"贝塞尔飞行收集",
  15. "id":"bezier",
  16. "fields":{
  17. "动画":{"id":"efx","type":"list", "src":"animations"},
  18. "延时":{"id":"delay","type":"input","default":"0.1"},
  19. "节点":{"id":"node","type":"input"},
  20. "阴影":{"id":"shadow","type":"input"},
  21. "曲度":{"id":"bezierCur","type":"input","default":"1.2"},
  22. "下探幅度":{"id":"bezierDec","type":"input","default":"1.0"},
  23. "曲线的重合度":{"id":"bezierTrackCoin","type":"input","default":"10"},
  24. "时长倍率":{"id":"durationRatio","type":"input","default":"0.1"}
  25. }
  26. },
  27. {
  28. "name":"直线飞行收集",
  29. "id":"line",
  30. "fields":{
  31. "动画":{"id":"anim","type":"list", "src":"animations"},
  32. "节点":{"id":"node","type":"input"},
  33. "阴影":{"id":"shade","type":"input"}
  34. }
  35. }
  36. ],
  37. "event_template": [
  38. {
  39. "name":"旁消",
  40. "id":"adjBeat"
  41. },
  42. {
  43. "name":"特殊消",
  44. "id":"stampBeat"
  45. }
  46. ],
  47. "action_template":[
  48. {
  49. "name":"目标达成",
  50. "id":"goalFinished",
  51. "fields":{
  52. "状态变化":{"id":"dataDec","type":"input","default":"1"}
  53. }
  54. },
  55. {
  56. "name":"消除后生成其他",
  57. "id":"spawn",
  58. "fields":{
  59. "生成类型":{"id":"type","type":"input"},
  60. "生成数量":{"id":"num","type":"input"}
  61. }
  62. }
  63. ]
  64. }