A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

33 lines
1.1KB

  1. <div class="pure-g pure-g-nw">
  2. <div class="pure-u-1 simple-padding text-align-center">
  3. <form class="pure-form">
  4. <label for="painter_scale">
  5. Scale :
  6. </label>
  7. <input id="painter_scale" class="pure-input-1-8" type="number" min="0.5" max="1000" step="0.1" value ="1"/>
  8. <button emit="painter-fit-to-canvas" title="Fit to Window" class="pure-button">
  9. <i class="fa fa-expand-arrows-alt"></i>
  10. </button>
  11. <button emit="painter-colormode" title="Toggle Color Mode" emit-args='{"onePaletteMode":false}' class="pure-button">
  12. <i class="fa fa-palette"></i>
  13. </button>
  14. <button emit="painter-togglegrid" title="Toggle Grid" emit-args='{"show":true}' class="pure-button">
  15. <i class="fa fa-th"></i>
  16. </button>
  17. <select class="painter-grid-options hidden">
  18. <option value="1">8x8</option>
  19. <option value="2">16x8</option>
  20. <option value="3">16x16</option>
  21. <option value="4">32x32</option>
  22. <option value="5">16mj 8mn</option>
  23. <option value="6">32mj 16mn</option>
  24. </select>
  25. </form>
  26. </div>
  27. </div>