collision.schema.json 739 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "type":"object",
  3. "script" : "collision.py",
  4. "title":"edt_eff_collision_header",
  5. "required":true,
  6. "properties":{
  7. "speed": {
  8. "type": "number",
  9. "title":"edt_eff_speed",
  10. "default": 100,
  11. "minimum" : 100,
  12. "append" : "edt_append_ms",
  13. "propertyOrder" : 1
  14. },
  15. "trailLength" :
  16. {
  17. "type": "integer",
  18. "title":"edt_eff_colorcount",
  19. "default": 5,
  20. "minimum" : 3,
  21. "maximum" : 100,
  22. "step" : 1,
  23. "append" : "edt_append_pixel",
  24. "propertyOrder" : 2
  25. },
  26. "explodeRadius" :
  27. {
  28. "type": "integer",
  29. "title":"edt_eff_explodeRadius",
  30. "default": 8,
  31. "minimum" : 5,
  32. "maximum" : 100,
  33. "step" : 1,
  34. "append" : "edt_append_pixel",
  35. "propertyOrder" : 3
  36. }
  37. },
  38. "additionalProperties": false
  39. }