12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- "pool_template":[
- {
- "name":"随机",
- "id":"random"
- },
- {
- "name":"按颜色",
- "id":"byColor"
- }
- ],
- "coll_template":[
- {
- "name":"贝塞尔飞行收集",
- "id":"bezier",
- "fields":{
- "动画":{"id":"efx","type":"list", "src":"animations"},
- "延时":{"id":"delay","type":"input","default":"0.1"},
- "节点":{"id":"node","type":"input"},
- "阴影":{"id":"shadow","type":"input"},
- "曲度":{"id":"bezierCur","type":"input","default":"1.2"},
- "下探幅度":{"id":"bezierDec","type":"input","default":"1.0"},
- "曲线的重合度":{"id":"bezierTrackCoin","type":"input","default":"10"},
- "时长倍率":{"id":"durationRatio","type":"input","default":"0.1"}
- }
- },
- {
- "name":"直线飞行收集",
- "id":"line",
- "fields":{
- "动画":{"id":"anim","type":"list", "src":"animations"},
- "节点":{"id":"node","type":"input"},
- "阴影":{"id":"shade","type":"input"}
- }
- }
- ],
- "event_template": [
- {
- "name":"旁消",
- "id":"adjBeat"
- },
- {
- "name":"特殊消",
- "id":"stampBeat"
- },
- {
- "name":"收集到",
- "id":"collect"
- }
- ],
- "action_template":[
- {
- "name":"目标达成",
- "id":"goalFinished",
- "fields":{
- "状态变化":{"id":"dataDec","type":"input","default":"1"}
- }
- },
- {
- "name":"消除后生成其他",
- "id":"spawn",
- "fields":{
- "生成类型":{"id":"type","type":"input"},
- "生成数量":{"id":"num","type":"input"}
- }
- },
- {
- "name":"收集到特定类型元素",
- "id":"collect",
- "fields":{
- "元素类型":{"id":"target","type":"input"},
- "到达之后的特效":{"id":"efx","type":"list", "src":"animations"}
- }
- }
- ]
- }
|