template.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "pool_template":[
  3. {
  4. "name":"随机",
  5. "id":"1"
  6. },
  7. {
  8. "name":"按颜色",
  9. "id":"2"
  10. }
  11. ],
  12. "coll_template":[
  13. {
  14. "name":"贝塞尔飞行收集",
  15. "id":"bezier",
  16. "fields":{
  17. "动画":{"id":"anim","type":"list", "src":"animations"},
  18. "曲度":{"id":"p1","type":"input","default":"1.2"},
  19. "下探幅度":{"id":"p2","type":"input","default":"1.0"},
  20. "节点":{"id":"node","type":"input"},
  21. "阴影":{"id":"shade","type":"input"}
  22. }
  23. },
  24. {
  25. "name":"直线飞行收集",
  26. "id":"line",
  27. "fields":{
  28. "动画":{"id":"anim","type":"list", "src":"animations"},
  29. "节点":{"id":"node","type":"input"},
  30. "阴影":{"id":"shade","type":"input"}
  31. }
  32. }
  33. ],
  34. "event_template": [
  35. {
  36. "name":"旁消",
  37. "id":"adj"
  38. },
  39. {
  40. "name":"特殊消",
  41. "id":"stamp"
  42. }
  43. ],
  44. "action_template":[
  45. {
  46. "name":"目标达成",
  47. "id":"goalFinished",
  48. "fields":{
  49. "执行动作":{"id":"action","type":"list","src":"animations","default":""}
  50. }
  51. },
  52. {
  53. "name":"消除后生成其他",
  54. "id":"spawn",
  55. "fields":{
  56. "生成类型":{"id":"type","type":"input"},
  57. "生成数量":{"id":"num","type":"input"}
  58. }
  59. }
  60. ]
  61. }