processing.json 309 B

123456789101112131415161718192021222324252627
  1. {
  2. "variables": {
  3. "mini": 1,
  4. "swipeDirection": "",
  5. "turn":1
  6. },
  7. "execute": [
  8. {
  9. "type": "random",
  10. "inVars": [
  11. "{mini}",
  12. "4"
  13. ],
  14. "outVars": [
  15. "{swipeDirection}"
  16. ]
  17. },
  18. {
  19. "type": "echo",
  20. "value": "hello"
  21. },
  22. {
  23. "type": "echo",
  24. "value": "第{{turn}}轮"
  25. }
  26. ]
  27. }