processing.json 422 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "variables": {
  3. "mini": 1,
  4. "swipeDirection": "",
  5. "aws":40
  6. },
  7. "execute": [
  8. {
  9. "type": "random",
  10. "inVars": [
  11. "{mini}",
  12. "4"
  13. ],
  14. "outVars": [
  15. "{swipeDirection}"
  16. ]
  17. },
  18. {
  19. "type":"if",
  20. "condition": "{aws}>=0",
  21. "true":
  22. [
  23. {
  24. "type": "echo",
  25. "value": "hello"
  26. }
  27. ],
  28. "false":
  29. [
  30. {
  31. "type": "echo",
  32. "value": "第{{aws}}轮"
  33. }
  34. ]
  35. }
  36. ]
  37. }