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.

59 lines
2.7 KiB

  1. <fieldset class="repeat-fieldset {{#if repeating}}active{{/if}}">
  2. <legend >Repeating <input class="repeat" type="checkbox" name="{{root}}repeating" {{#if repeating}}checked{{/if}}></legend>
  3. <div class="content" {{#unless repeating}}style="display: none;"{{/unless}}>
  4. <div class="form-group">
  5. <label>Value</label>
  6. <div class="form-fields">
  7. <input name="{{root}}repeat.value" type="text" value="{{repeat.value}}"></input>
  8. </div>
  9. <p class="notes">Value that will be divided by the increment to determine the number of repeats.</p>
  10. </div>
  11. <div class="form-group slim">
  12. <label>Increment</label>
  13. <div class="form-fields">
  14. <label>Value</label>
  15. <input name="{{root}}repeat.increment"type="text" value="{{repeat.increment}}"></input>
  16. <label>Percentage</label>
  17. <input type="checkbox" data-dtype="Boolean" name="{{root}}repeat.isPercentage" {{#if repeat.isPercentage}}checked{{/if}}></input>
  18. </div>
  19. </div>
  20. <div class="form-group">
  21. <label>Max Value (optional)</label>
  22. <div class="form-fields">
  23. <input name="{{root}}repeat.maxValue" type="text" value="{{repeat.maxValue}}"></input>
  24. </div>
  25. <p class="notes">Max value only required if increment is a percentage.</p>
  26. </div>
  27. <div class="form-group">
  28. <label>Repeats per row (optional)</label>
  29. <div class="form-fields">
  30. <input name="{{root}}repeat.perRow" type="text" value="{{repeat.perRow}}"></input>
  31. </div>
  32. <p class="notes">How many repeats should be rendered before proceeding to the next row.</p>
  33. </div>
  34. <div class="form-group">
  35. <label>Max Rows (optional)</label>
  36. <div class="form-fields">
  37. <input name="{{root}}repeat.maxRows" type="text" value="{{repeat.maxRows}}"></input>
  38. </div>
  39. <p class="notes">Limit repeats to this number of rows.</p>
  40. </div>
  41. {{#if padding}}
  42. <div class="form-group slim">
  43. <label>Padding (optional)</label>
  44. <div class="form-fields">
  45. <label>Horizontal</label>
  46. <input name="{{root}}repeat.paddingX" type="text" value="{{repeat.paddingX}}"></input>
  47. <label>Vertical</label>
  48. <input name="{{root}}repeat.paddingY" type="text" value="{{repeat.paddingY}}"></input>
  49. </div>
  50. <p class="notes">Insert empty pixels in-between the repeating shapes.</p>
  51. </div>
  52. {{/if}}
  53. </div>
  54. </fieldset>