All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.5 KiB

  1. <fieldset>
  2. <input type="text" name="shapes.{{@index}}.shape.type" value="{{shape.type}}" hidden>
  3. <legend class="shape-legend"><b>TORUS</b></legend>
  4. <div class="form-group">
  5. <label>X</label>
  6. <div class="form-fields">
  7. <input name="shapes.{{@index}}.shape.x" type="text" value="{{shape.x}}"></input>
  8. </div>
  9. </div>
  10. <div class="form-group">
  11. <label>Y</label>
  12. <div class="form-fields">
  13. <input name="shapes.{{@index}}.shape.y"type="text" value="{{shape.y}}"></input>
  14. </div>
  15. </div>
  16. <div class="form-group">
  17. <label>Inner Radius</label>
  18. <div class="form-fields">
  19. <input name="shapes.{{@index}}.shape.innerRadius" type="text" value="{{shape.innerRadius}}"></input>
  20. </div>
  21. </div>
  22. <div class="form-group">
  23. <label>Outer Radius</label>
  24. <div class="form-fields">
  25. <input name="shapes.{{@index}}.shape.outerRadius" type="text" value="{{shape.outerRadius}}"></input>
  26. </div>
  27. </div>
  28. <div class="form-group">
  29. <label>Start Angle</label>
  30. <div class="form-fields">
  31. <input name="shapes.{{@index}}.shape.startAngle" type="text" value="{{shape.startAngle}}"></input>
  32. </div>
  33. </div>
  34. <div class="form-group">
  35. <label>End Angle</label>
  36. <div class="form-fields">
  37. <input name="shapes.{{@index}}.shape.endAngle" type="text" value="{{shape.endAngle}}"></input>
  38. </div>
  39. </div>
  40. </fieldset>